html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: rgb(255, 0, 61);
    background: radial-gradient(
        circle,
        rgba(255, 0, 61, 1) 0%,
        rgba(236, 22, 111, 1) 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.header-icon {
    width: 300px;
    height: auto;
    margin: 20px 0 20px 0;
    border-radius: 15px;
}

.title {
    font-family: "Sora", sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin: 0;
}

.title-brajen {
    color: #2b2b2b;
}

.title-irl {
    color: white;
}

.email-contact {
    font-family: "Sora", sans-serif;
    font-size: 24px;
    color: black;
    margin-top: 5px;
    font-weight: bold;
}

@media (max-width: 767px) {
    .header-icon {
        width: 120px;
        margin-bottom: 15px;
    }

    .title {
        font-size: 36px;
    }

    .email-contact {
        font-size: 22px;
    }
}

.social-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
}

.social-tile {
    background: white;
    border: 2px solid #2b2b2b;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 180px;
}

.social-tile:hover {
    transform: scale(1.05);
}

.social-tile img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.social-tile a {
    text-decoration: none;
}

.social-tile span {
    display: block;
    color: #2b2b2b;
    font-family: "Sora", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
}

.social-tile:hover span {
    text-decoration: underline;
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 20px;
        max-height: 100vh;
        margin: 20px 0 15px 0;
    }

    .title {
        font-size: 36px;
        margin: 0 0 20px 0;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .social-links > div:last-child {
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
}
