@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #223c7e;
    font: 1rem/1.5em 'Roboto', Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

header {
    padding: 2rem 1rem;
    display: flex;
}

article {
    padding: 0 1rem;
}

article p {
    margin: 1rem 0 1.5rem;
    text-align: justify;
    hyphens: auto;
}

article h1 {
    font-size: 1.6rem;
    line-height: 120%;
    margin: 1.5rem 0;
    text-transform: uppercase;
}

article h2 {
    font-size: 1.3rem;
}

article h2+p {
    margin-top: .5rem;
}

article ul {
    margin: .5rem 0 2rem 2.3rem;
    list-style: none;
    hyphens: auto;
}

article ul li {
    padding-bottom: .2rem;
}

article ul li:before {
    content: "\276F";
    color: #b2b1a7;
    float: left;
    font-size: 1.125rem;
    margin: -1px 0 0 -22px;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article span {
    display: inline-block;
}

footer {
    background: #f2f2f2;
    padding: 1rem;
    margin: 1rem 0 0;
}

footer p:not(:last-of-type) {
    margin: 0 0 1rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article p {
        text-align: left;
    }
}

@media only screen and (max-width: 30rem) {

    h1,
    footer {
        text-align: center;
    }

    header {
        justify-content: center;
    }

    article ul {
        margin: .5rem 0 2rem 1.4rem;
    }
}