/*test*/

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

/* CSSRESET */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}button,input[type=submit]{padding:0;border:none;outline:0;font:inherit;color:inherit;background:0 0;cursor:pointer;-webkit-appearance:none;border-radius:0}*{box-sizing:border-box}body,html{scroll-behavior:smooth;font-family:var(--global_font),sans-serif}img{max-width:100%}
/************/
:root {
    --global_font: "Bou College";
    --blue: #032649;
    --darkblue: #000e28;
    --orange: #ffbb00;
    --maxwidth: 80vw;
}

/* SPLASH */
body, main, form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

body {
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    background-color: var(--blue);
    background-image: url(/img/bg.svg);
    background-size: cover;
    background-position: center;
    color: white;
    font-size: 20px;
}

main > * ~ * { margin-top: 20px; }
h1, h1 img, h3, form { max-width: var(--maxwidth); width: 100%; }
h2 { font-size: 25vw; }
h3 { color: var(--orange); }

form {
    align-items: stretch;
    width: 80vw;
}

form input[type="email"], form #mc-embedded-subscribe {
    width: 100%;
    margin: 0;
    padding: 0.75em;
    text-align: center;
}

form #mc-embedded-subscribe {
    margin-top: 10px;
    padding: 0.5em;
    background: var(--orange);
    color: var(--darkblue)
}

form span:empty, .response:empty {
    display: none;
}

.mce_inline_error, #mce-success-response {
    padding: 10px;
}

#mce-success-response:not(.response:empty) ~ .mce_inline_error {
    display: none;
}

@media only screen and (min-width: 600px) {
    :root {
        --maxwidth: 400px;    
    }
    
    body {
        background-size: auto 90vh;
        background-repeat: no-repeat;
    }
    
    h2 {
        font-size: 150px;
    }
}