@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');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: 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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

#wrapper {
    max-width: 870px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 32px 32px 10px;
    background-color: #fff;
    position: relative;
}

.logo {
    position: absolute;
    top: 28px;
    right: 20px;
}

article {
    padding: 0 0 10px;
}

.center {
    text-align: center;
}

.center a {
    color: #00f !important;
    text-decoration: underline !important;
}

footer p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.3;
}

:is(p, ul) {
    margin: 0 0 16px;
}

p {
    text-align: justify;
    hyphens: auto;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 23px;
    text-align: center;
}

h2 {
    margin: 0 0 26px;
    font-size: 33px;
    line-height: 35px;
}

h3 {
    margin: 32px 0 0;
    font-size: 16px;
    line-height: 20px;
}

ul {
    margin-left: 26px;
    list-style: none;
}

ul li {
    padding-left: 25px;
}

li:before {
    content: '\2022';
    float: left;
    font-size: 25px;
    text-indent: -25px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media all and (max-width: 869px) {
    #wrapper {
        padding: 16px;
        margin: 0;
        border: none;
    }

    .logo {
        top: 16px;
        right: 16px;
    }

    :is(p, ul) {
        text-wrap: pretty;
        text-align: left;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    br:not( br.block) {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        margin: 0 0 16px;
    }

    h2 {
        font-size: 28px;
        line-height: 32px;
    }

    ul {
        margin-left: 0;
    }

    br.block {
        display: none !important;
    }
}