html{
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    font-weight: 100;
    min-height: 100vh;
}

body {
    margin: 0;
    font-size: 62.5%;

    @media screen and (min-width: 768px){
        font-size: 75%;
    }

    @media screen and (min-width: 1024px){
        font-size: 87.5%;
    }

    @media screen and (min-width: 1280px){
        font-size: 100%;
    }

    @media screen and (min-width: 1600px){
        font-size: 115%;
    }
}

img {
    max-width: 100%;
    height: auto;
}

p{
    margin: 0 0 1rem 0;
    padding: 0;
}

blockquote{
    margin: 0;
}

.container {
    min-height: 100vh;
    width: 100vw;
    margin: 0 auto auto auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.site-header{
    width: 100%;
    padding: 2rem;
    min-height: 30vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.site-header-inner{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 30vh;
    padding: 10vw;
}

.site-header-logo{
    background: white;
    border-radius: 0.75rem;
    width: 12rem;
    height: 8rem;
    margin: auto;
    padding: 1.5rem 3.25rem;
}

.site-header-quote{
    width: 100%;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgb(231,57,39);
    border-radius: 1rem;
    font-weight: 300;
    font-size: 1.2rem;
    text-align: center;
    color: white;

    blockquote{

    }

    cite{
        display: block;
        margin-top: 1rem;
        font-style: normal;
    }
}

.site-signup-info,
.site-signup-form {
    display: block;
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 1.2rem;

    h2{
        margin: 0 0 2rem 0;
        font-weight: 600;
    }
}

.site-signup-info{
    h2{
        margin: 0 0 2rem 0;
        font-weight: 600;
    }
}

.site-signup-form{
    margin-bottom: 4rem;
    background: rgb(231,57,39);
}

.site-signup-form-header,
.site-signup-form-field{
    color: white;
    text-align: center;
}

#mc_embed_signup{
    max-width: 600px;
}

.site-signup-form-header h2{
    margin-bottom: 0;
}

.site-signup-form-fields{
    margin-top: 1rem;
    color: white
}

.mc-field-group{
    margin-bottom: 1rem;
}

.mc-field-group input{
    border-radius: 0.25rem;
}

.container #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    margin-top: 0.25rem;
}

.asterisk{
    color: white !important;
}

#mc_embed_signup .site-signup-form-actions-subscribe.button{
    width: 96%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    height: auto;
    background: rgb(0,0,0,0.5);
    color: white;
    font-size: 1.2rem;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    text-transform: uppercase;

}

@media screen and (min-width: 768px){

    .site-header-inner{
        max-width: 70vw;
        padding: 5vh 5vw;
    }

    .site-header-logo{
        margin-left: 0;
        margin-bottom: 10vh;
    }

    .site-header-quote{
        max-width: 600px;
        margin-left: 0;
    }

    .site-signup-info,
    .site-signup-form {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    #mc_embed_signup{
        max-width: 100%;
    }

}