* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    animation: rotate-bg-color 12s infinite;
    background-color: #879cbc;
    background-image: url('assets/luxe-pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.full-screen-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.full-screen-section .center-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

.full-screen-section .logo {
    max-width: 35%;
    max-height: auto;
    height: auto;
    display: block;
}

.full-screen-section .footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1vh;
    width: 90%;
    max-width: 900px;
    padding: 2vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 180px;
    margin-top: 0;
}

.full-screen-section .socmeds {
    width: 100%;
    display: flex;
    gap: 7%;
    justify-content: center;
    align-items: center;
}

.full-screen-section .socmeds img {
    width: 30px;
    height: auto;
    object-fit: cover;
    display: block;
}

.full-screen-section .tagline {
    font-family: futura-pt, "Futura PT", "Century Gothic", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 170%;
    color: #2d2d2d;
    text-align: center;
    margin: 0;
}

.tagline .small-caps {
    font-variant: small-caps;
    font-weight: 400;
}

@keyframes rotate-bg-color {
    0% {
        background-color: #879cbc;
    }
    50% {
        background-color: #b2bfd3;
    }
    100% {
        background-color: #879cbc;
    }
}

/* 1440px and above */
@media (max-width: 1440px) {

}

/* 1024px and above */
@media (max-width: 1024px) {
    .full-screen-section .tagline {
        font-size: 150%;
    }

    .full-screen-section .logo {
        max-width: 50%;
    }

    .full-screen-section .socmeds img {
        width: 35px;
    }

    .full-screen-section .socmeds {
        gap: 6%;
    }
}

/* 768px and above */
@media (max-width: 768px) {
    .full-screen-section .tagline {
        font-size: 125%;
    }

    .full-screen-section .logo {
        max-width: 60%;
    }

    .full-screen-section .socmeds img {
        width: 35px;
    }

    .full-screen-section .socmeds {
        gap: 6%;
    }
}

/* 425px and above */
@media (max-width: 425px) {
    .full-screen-section .tagline {
        font-size: 95%;
    }

    .full-screen-section .logo {
        max-width: 70%;
    }

    .full-screen-section .socmeds img {
        width: 30px;
    }

    .full-screen-section .socmeds {
        gap: 15%;
    }

    .full-screen-section .socmeds img {
        width: 28px;
    }
}

/* 375px and above */
@media (max-width: 375px) {
    .full-screen-section .tagline {
        font-size: 80%;
    }

    .full-screen-section .logo {
        max-width: 70%;
    }

    .full-screen-section .socmeds img {
        width: 30px;
    }

    .full-screen-section .socmeds {
        gap: 15%;
    }

    .full-screen-section .socmeds img {
        width: 28px;
    }
}

/* 320px and above */
@media (max-width: 320px) {
    .full-screen-section .tagline {
        font-size: 80%;
    }

    .full-screen-section .logo {
        max-width: 70%;
    }

    .full-screen-section .socmeds img {
        width: 30px;
    }

    .full-screen-section .socmeds {
        gap: 15%;
    }

    .full-screen-section .socmeds img {
        width: 28px;
    }
}

