@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}

#wrapper {
    max-width: 830px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 16px 32px 32px;
    background-color: #fff;
    position: relative;
}

.logo {
    position: absolute;
    top: 20px;
    left: 48px;
}

.margin {
    margin: 0;
}

p {
    margin: 0 0 30px;
    text-align: center;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 6px 0;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}

h1 span {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

h2 {
    margin: 0 0 88px;
    font-weight: 700;
    font-size: 23px;
    text-align: center;
}

h2 span {
    display: block;
}

h3 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 16px;
}

ul {
    margin: 0 0 32px 36px;
    list-style: none;
}

ul li {
    padding-left: 24px;
}

li:before {
    content: '\2010';
    float: left;
    font-size: 20px;
    line-height: 32px;
    text-indent: -24px;
    margin-top: -2px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #0563c1;
    text-decoration: underline;
}

@media all and (max-width: 830px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(a, span) {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}

@media all and (max-width: 767px) {
    #wrapper {
        padding: 16px;
    }

    .logo {
        position: static;
        display: flex;
        justify-content: center;
    }

    h2 {
        margin: 32px 0;
    }
}

@media all and (max-width: 480px) {
    ul {
        margin-left: 0;
    }
}