@font-face {
    font-family: 'BoomBox';
    src: url('BoomBox.woff2') format('woff2'),
        url('BoomBox.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bree Serif';
    src: url('BreeSerif-BoldItalic.woff2') format('woff2'),
        url('BreeSerif-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bree Serif';
    src: url('BreeSerif-Bold.woff2') format('woff2'),
        url('BreeSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bree Serif';
    src: url('BreeSerif-Italic.woff2') format('woff2'),
        url('BreeSerif-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bree Serif';
    src: url('BreeSerif-Regular.woff2') format('woff2'),
        url('BreeSerif-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Subway Novella';
    src: url('SubwayNovella.woff2') format('woff2'),
        url('SubwayNovella.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.coming-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fit, minmax(150px, 1fr));
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.logo>h3 {
    background-color: #ffd000;
    display: inline-block;
    padding: 10px 60px 10px 60px;
    margin-left: 125px;
    font-size: 1.25rem;
}

.second-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.second-sec>h2 {
    font-family: "Bree Serif", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.second-sec>h1 {
    font-family: "Subway Novella", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.second-subsec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-family: sans-serif;
    font-weight: 400;
    font-style: normal;
}

.second-subsec>div {
    border-right: 2px solid #0B0c10;
    padding-right: 10px;
}

.second-subsec>div:last-child {
    border: none;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #ffd000;
    padding: 50px 20px;
}

.banner>div:first-child {
    padding-right: 5px;
    border-right: 2px solid #0B0c10;
}

.last-sec {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #ffd000;
    background-color: #0B0c10;
    margin-top: 30px;
    padding: 20px;
}

a {
    text-decoration: none;
    color: aliceblue;
    padding-right: 15px;
}

a:hover {
    color:blanchedalmond;
}

.logo img {
    width: 70vw; /* Image will always be 50% of the screen width */
    height: auto;
}

@media (max-width: 768px) {
    /* I ONLY write things here that need to change for mobile */
    
    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px;
        

    }

    .banner>div {
        font-size: 0.65rem;
        padding: 5px;
        text-align: center; /* Text is smaller on mobile */
        /* I do NOT need to write font-family, color, or background-color again! */
    }

    .logo>h3 {
        padding: 5px;
        margin-left: 65px;
        font-size: 0.95rem;
    }

    .second-sec>h2 {
        font-size: 1.25rem;
    }

    .second-sec>h1 {
        font-size: 1.25rem;
    }

    .second-subsec {
        gap: 10px;

        font-size: 0.85rem;
    }

    .last-sec {
        font-size: 0.75rem;
        margin-top: 30px;
        padding: 20px;
    }

}