@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body{
    padding-bottom: 100px;
    font-family: 'Poppins', sans-serif;
    min-height:100vh;
    background: rgb(34,137,214);
    background-image: url('img/cloud-bottom.png'), linear-gradient(0deg, rgba(34,137,214,1) 0%, rgba(0,195,255,1) 100%);
    background-position: bottom center;
    background-repeat: repeat no-repeat;
}
header{
    padding: 15px 0;
    display:flex;
    justify-content: space-between;
    align-items:center;
}
header a{
    margin-right: 15px;
    margin-left: 15px;
}
h1{
    padding: 0 20px;
    font-size: 42px;
    font-weight: 600;
    font-style: italic;
    text-align:center;
    color:white;
    margin-bottom:10px;
    letter-spacing: 1px;
    line-height: 50px;
}
h2{
    padding: 0 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 2px;
    color:white;
    margin-bottom:10px;
    text-align:center;
    line-height: 40px;
}
p{
    padding: 0 20px;
    font-size: 19px;
    font-weight: 400;
    color:white;
    line-height: 36px;
    text-align:center;
    margin-bottom:20px;
}
.wrapper{
    max-width:100%;
    max-width: 1366px;
    margin:0 auto;
}
article{
    max-width:100%;
    max-width: 1200px;
    margin: 20px auto;
    border: 2px solid white;
    border-radius: 2px;
    box-shadow: 0 0 60px 10px rgb(0 0 0 / 25%);
}
.show-mobile{
    display:none;
}
article iframe{
    display:block;
}
.spacer{
    height:100px;
    display:block;
}
.link{
    color:black;
}
.learn-more-wrap{
    text-align: center;
}
.learn-more{
    text-align: center;
    margin-top: 40px;
    display: block;
}
.learn-more img{
    max-width: 500px;
    width: 100%;
}

@media(max-width: 768px){
   
    header a{
        margin-right:0;
        margin-left:0;
    }
    header a img{
        width:auto;
        max-height:44.89px;
    }
    .show-mobile{
        display:inline-block;
    }
    article iframe{
        display:none;
    }
    header{
        align-items:center;
        justify-content:center;
        flex-direction: column;
    }
    .center{
        text-align:center;
    }
    .wrapper{
        padding:0 20px;
    }
    h1{
        font-size: 32px;
    }
    h2{
        font-size: 28px;
    }
    p{
        font-size: 16px;
        line-height:23px;
    }
}

@media(max-width: 620px){
    h2{
        font-size: 18px;
        letter-spacing: 0;
        line-height: 29px;
    }
}
