body {
    font-family: 'Be Vietnam', sans-serif;
    background: #2A3244;
    color: white;
}

.page {
    display: flex;
    flex-direction: column;

}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.logo-container {
    width: 80vw;
}

.logo-container .logo {

}

.logo-container .tagline {
    margin-top: 0.5em;
    text-align: center;
    font-size: 5vw;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subscribe {
    width: 80vw;
}

.subscribe .text {
    font-size: 13px;
    margin-bottom: 1em;
}

.subscribe .field {
    display: flex;
    flex-direction: row;
    margin-bottom: 3em;
}

.subscribe .field .email {
    width: 100%;
    height: 30px;
    background: #FFFFFF50;
    opacity: 1;
    border: none;
    outline: none;
    color: #FDAC53;
    font-size: 13px;
    padding-left: 1em;
}

.subscribe .field button {
    color: #2A3244;
    background: rgba(255, 255, 255, 0.8);
    padding: 0 0.5em;
    border: none;
}

.subscribe .field button:hover {
    color: #FFFFFF;
    background: #FDAC53;
    cursor: pointer;
}

.insta {
    width: 80vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.insta a {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    text-decoration: none;
}
.insta .logo {
    width: 30px;
    height: 30px;
}

.insta .link {
    margin-left: 1em;
    color: #FFFFFF;
    text-decoration: none;
}

.insta .link:hover {
    color: #FDAC53;
}


@media only screen and (min-width: 1020px) {
    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80vh;
    }

    .logo-container {
        width: 60vw;
    }

    .logo-container .logo {

    }

    .logo-container .tagline {
        margin-top: 0.2em;
        font-size: 3vw;
    }

    .footer {
        width: 80vw;
        margin: 0 auto 2em;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .subscribe {
        width: 35vw;
    }

    .subscribe .text {
        font-size: 19px;
        margin-bottom: 1em;
    }

    .subscribe .field {
        display: flex;
        flex-direction: row;
        margin-bottom: 3em;
    }

    .subscribe .field .email {
        width: 100%;
        height: 50px;
        background: #FFFFFF50;
        opacity: 1;
        border: none;
        outline: none;
        color: #FDAC53;
        font-size: 19px;
    }

    .subscribe .field button {
        color: #2A3244;
        background: rgba(255, 255, 255, 0.8);
        font-size: 19px;
        padding: 0 0.5em;
        border: none;
    }

    .insta {
        width: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

    .insta a {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        text-decoration: none;
    }
    .insta .logo {
        width: 50px;
        height: 50px;
    }

    .insta #insta-logo:hover {
        fill: #FDAC53;
    }

    .insta .link {
        margin-left: 1em;
        font-size: 19px;
        color: #FFFFFF;
        text-decoration: none;
    }

}