@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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

#wrapper {
    max-width: 766px;
    margin: 1rem auto;
    border: 1px solid #000;
    background-color: #fff;
    padding: 20px 40px;
}

header {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

article {
    padding: 39px 0 20px;
}

footer {
    padding: 0px;
}

p:not(:first-of-type) {
    margin-top: 16px;
}

p {
    text-align: justify;
    hyphens: auto;
}

h1 {
    font-size: 20px;
    line-height: 1.5;
    margin: 20px 0 0;
    text-align: center;
}

h1 span {
    display: block;
    font-size: 16px;
    margin: 10px 0 0;
}

h2 {
    font-size: 16px;
    line-height: 23px;
    font-weight: normal;
    text-decoration: underline;
    padding-top: 20px;
}

h3 {
    font-size: 33px;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
}

ul {
    list-style: none;
    margin-left: 20px;
}

ul li {
    padding-left: 19px;
    margin-top: 5px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 21px;
    text-indent: -19px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

@media only screen and (max-width:765px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left;
    }

    :is(p, ul) span {
        white-space: nowrap;
    }
}

@media only screen and (max-width:680px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 16px
    }
}

@media only screen and (max-width:480px) {
    ul {
        margin-left: 0
    }
}