/* ===================== fonts ===================== */

/* vietnamese */
@font-face {
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACH5FQ2J5hm25mww.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACH5BQ2J5hm25mww.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Bangers';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACH55Q2J5hm24.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Blugie";
    src: url("/fonts/Blugie.ttf") format("truetype");
    /* optional descriptors: */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #592c95;
}

#header {
    height: 150px;
    background-image: url("imgs/papel_picado.svg");
    background-repeat: repeat-x;
    background-position: top center;
    background-position-y: -10px;
    background-size: auto;
}

#footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    color: white;
    flex-wrap: wrap;
    text-align: center;
}

.instagram-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link {
    color: white;
}

.instagram-logo {
    width: 20px;
    height: 20px;
}

.separator::before {
    content: "|";
}

main {
    /*padding: 80px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 80vh;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.coming-text, .soon-text {
    color: white;
    font-size: 100px;
    font-family: 'brandon-grotesque', sans-serif;
    line-height: 1;
}

.soon-text {
    font-family: 'Blugie', serif;
}

@media (max-width: 1024px) {
    main {
        flex-direction: column;
        gap: 20px;
        padding: 80px;
    }

    .logo {
        display: block;
        padding: 0 16px;
        box-sizing: border-box;
        width: 200%;
    }

    #footer {
        flex-direction: column;
        gap: 10px;
        padding: 70px;
    }

    .separator::before {
        content: "-";
    }

    .coming-text, .soon-text {
        font-size: 80px;
    }
}