@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''),
        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');
}
@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');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
}
body {
    font:400 1em/1.3em 'Roboto', Arial, sans-serif;
    color: #242021;
}
#wrapper {
    max-width: 745px;
    margin: 1rem auto;
    padding: 0;
    border: solid 2px #3C4479;
    overflow: hidden;
    position: relative;
}
h1, h2, strong {
    font-weight: 700;
}
header {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
header p {
    text-align: center;
}
article {
    padding: 0 16px 10px;
}
article p:nth-of-type(1) {
    text-align: justify;
    hyphens: auto;
}
footer {
    padding: 16px;
    background: #3C4479;
}
footer p {
    color: #fff;
}
footer h2 {
    margin: 0;
    color: #fff;
}
footer strong {
    font-size: 20px;
}
footer h2+p {
    margin-left: 16px;
}
h1 {
    font-size: 1.6em;
    line-height: 1.2;
    margin: 16px -16px;
    background: #3C4479;
    color: #fff;
    text-align: center;
    padding: 7px 16px;
}
h1 span {
    font-size: 20px;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin: 16px 0 0;
}
img {
    max-width: 100%;
}
p:not(:last-child) {
    margin-bottom: 16px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
ul {
    margin: 0 0 0 16px;
    list-style: none;
}
ul li {
    padding-left: 12px;
}
li:before {
    text-indent: -12px;
    content: "\2022";
    color: #242021;
    float: left;
    font-size: 21px;
    font-family: Arial, sans-serif;
}
@media screen and (max-width:743px) {
    #wrapper {
        border: none;
        margin: 0;
    }
    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
    article p:nth-of-type(1) {
        text-align: left;
    }
}
@media screen and (max-width:480px) {
    ul {
        margin-left: 0;
    }
    p span {
        white-space: nowrap;
    }
}