.header-container {
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.header-content {
    background-image: url("/static/imgs/social-links/background.01f6a7afd389.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 2rem;
    padding-bottom: 0;
    width: 100%;
    height: 100%;
    padding: 10% 0 10% 0;
}

.header-title {
    font-size: 2rem;
}

.header-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    overflow: auto;
}

.social-links-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 1%;
}

.social-link {
    width: 85%;
    overflow: auto;
    transition: all 0.1s ease;
}

.social-link:hover {
    transform: scale(1.03);
}

.social-link img {
    max-width: 100%;
    height: 100%;
}


/* Large Mobile: min-width: 576px */
@media (min-width: 576px) {
    .header-content {
        padding: 9% 0 8% 0;
    }

    .header-title {
        font-size: 2.2rem;
    }

    .social-links-buttons {
        gap: 1.2rem;
    }

    .social-link {
        width: 80%;
    }
}



/* Tablet: min-width: 768px */
@media (min-width: 768px) {
    .header-content {
        padding: 8% 0 5% 0;
    }

    .header-title {
        font-size: 2.6rem;
    }

    .social-links-buttons {
        gap: 1.5rem;
    }

    .social-link {
        width: 80%;
    }
}


/* Laptop: min-width: 992px */
@media (min-width: 992px) {
    .header-content {
        padding: 7% 0 0% 0;
    }

    .header-title {
        font-size: 2.8rem;
    }

    .social-links-buttons {
        gap: 1.8rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-link {
        width: 45%;
    }
}


/* Large Laptop: min-width: 1200px */
@media (min-width: 1200px) {
    .header-content {
        padding: 6% 0 0 0;
    }

    .header-title {
        font-size: 3.1rem;
    }

    .social-links-buttons {
        gap: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-link {
        width: 40%;
    }
}


/* Desktop: min-width: 1524px */
@media (min-width: 1524px) {
    .header-content {
        padding: 5% 0 0 0;
    }

    .header-title {
        font-size: 3.3rem;
    }

    .social-links-buttons {
        gap: 2.2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .social-link {
        width: 33%;
    }
}
