@font-face {
    font-display: swap;
    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-display: swap;
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-italic.eot');
    src: url('../fonts/roboto-v30-latin-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-italic.woff2') format('woff2'), url('../fonts/roboto-v30-latin-italic.woff') format('woff'), url('../fonts/roboto-v30-latin-italic.ttf') format('truetype'), url('../fonts/roboto-v30-latin-italic.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: local(''), url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), url('../fonts/roboto-v30-latin-500.woff') format('woff'), url('../fonts/roboto-v30-latin-500.ttf') format('truetype'), url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    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;
}

body {
    color: #231f20;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 715px;
    margin: 16px auto;
    border: 3px solid #0060af;
    background-color: #fff;
}

header {
    padding: 8px 16px 5px;
}

header p {
    font-size: 1.0625rem;
    line-height: 1.4375rem;
}

article {
    padding: 0 16px 6px;
}

.logo {
    display: flex;
    justify-content: center;
    margin: 12px 0 0;
}

footer {
    padding: 9px 16px 1px;
    background: #0060af;
}

footer small {
    display: block;
    font-size: 90%;
}

footer p {
    color: #fff;
    font-size: 17px;
    line-height: 23px;
}

:is(p:not(article p), h1) {
    text-align: center;
}

p {
    margin: 0 0 6px;
    text-align: justify;
}

strong {
    font-weight: 500;
}

h1 {
    font-weight: 700;
    font-size: 28px;
    color: #0060af;
    line-height: 33px;
}

:is(h1 span, h2, h3) {
    font-size: 17px;
}

h2 {
    margin: 0 0 6px;
    font-weight: 700;
    line-height: 22px;
    text-align: justify;
    color: #0060af;
}

h3 {
    font-weight: 700;
    margin: 10px 0 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 10px;
    list-style: none;
}

ul li {
    padding-left: 35px;
    margin: 1px 0;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 25px;
    text-indent: -14px;
}

img {
    max-width: 100%;
}

@media all and (max-width: 714px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    header {
        padding: 16px 16px 6px;
    }

    article {
        padding: 0 16px 16px;
    }

    footer {
        padding: 16px 16px 8px;
    }

    :is(p, ul, h2) {
        hyphens: auto;
        text-align: left;
        text-wrap: pretty;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    span {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}