@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'League Spartan';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/league-spartan-v15-latin-700.eot');
    src: url('../fonts/league-spartan-v15-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/league-spartan-v15-latin-700.woff2') format('woff2'), url('../fonts/league-spartan-v15-latin-700.woff') format('woff'), url('../fonts/league-spartan-v15-latin-700.ttf') format('truetype'), url('../fonts/league-spartan-v15-latin-700.svg#LeagueSpartan') format('svg');
}

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #00A2DD;
    font: 700 1em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 670px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #EEEDEA;
    overflow: hidden;
    padding: 0.5rem 1rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.4375em;
    line-height: 1.3;
}
h2 {
    font-size: 2em;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
h3 {
    font-size: 1.375em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
    color: #E8C403;
}
h2, h3, footer p {
    font-family: 'League Spartan', Arial, sans-serif;
}
h2, footer p {
    color: #265181;
}
header {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin-bottom: 1rem;
}
h1, h2, h3, footer p, article p:first-of-type {
    text-align: center;
}
footer p {
    padding: 0;
    font-size: 1.375em;
    line-height: 1.3;
}
figure {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:669px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h2 {
        font-size: 1.75em;
    }
    header {
        flex-direction: column;
        align-items: center;
    }
}