@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v40-latin-regular.eot');
    src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'),
        url('../fonts/open-sans-v40-latin-regular.woff') format('woff'),
        url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'),
        url('../fonts/open-sans-v40-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-v40-latin-700.eot');
    src: url('../fonts/open-sans-v40-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'),
        url('../fonts/open-sans-v40-latin-700.woff') format('woff'),
        url('../fonts/open-sans-v40-latin-700.ttf') format('truetype'),
        url('../fonts/open-sans-v40-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 80px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 20px;
}

span {
    white-space: nowrap;
}

h1 {
    font-size: 16px;
}

h2 {
    font-size: 17px;
    margin: 0 0 20px;
}

article hr {
    border: 0;
    border-top: 2px solid #A0A0A0;
    margin: 1.25rem 0;
}

footer hr {
    border: 0;
    border-top: 2px solid #000;
    margin: 40px 0 0;
}

ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

ul li {
    padding-left: 55px
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -30px;
    font-size: 25px;
    line-height: 0.9;
}

header {
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
}

@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 549px) {
    header {
        justify-content: center;
    }
    
    h1, h1 + p {
        text-align: center;
    }
    
    ul li {
    padding-left: 35px
}
}