@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v36-latin-regular.eot');
    src: url('../fonts/open-sans-v36-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v36-latin-regular.woff') format('woff'), url('../fonts/open-sans-v36-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v36-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-v36-latin-700.eot');
    src: url('../fonts/open-sans-v36-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v36-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v36-latin-700.woff') format('woff'), url('../fonts/open-sans-v36-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v36-latin-700.svg#OpenSans') format('svg');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    font-size: 15px;
    line-height: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
}

#wrapper {
    max-width: 850px;
    margin: 16px auto;
    border: 1px solid #333;
    background-color: #fff;
}

header {
    padding: 30px 60px;
}

article {
    padding: 0 60px;
}

footer {
    padding: 0 60px 30px;
}

span {
    white-space: nowrap;
}

figure {
    margin: 0 -60px;
}

:is(strong, h2) {
    font-weight: 700;
}

:is(h1, h3) {
    font-weight: 400;
}

h1 {
    margin: 20px 0;
    font-size: 21px;
    line-height: 30px;
    color: #5a5a5a;
}

h1 small {
    display: block;
    font-size: 16px;
    line-height: 20px;
}

h2 {
    font-size: 16px;
    line-height: 21px;
    margin: 8px 0;
}

h3 {
    font-size: 35px;
    margin: 38px 0 20px;
    line-height: 2rem;
    color: #f60;
}

.button {
    margin: 60px 0 8px;
}

.button a {
    padding: 2px 4px;
    display: inline-block;
    font-size: 16px;
    line-height: 21px;
    color: #0066b3 !important;
    border: 1px solid #0066b3;
}

.button span {
    font-size: 32px;
    display: inline-block;
    line-height: 0;
    position: relative;
    top: 2px;
}

p {
    margin: 0 0 20px;
}

.margin {
    margin-bottom: 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.link {
    white-space: normal !important;
}

ul {
    margin: 0 0 24px;
    list-style: none;
}

ul li {
    padding-left: 32px;
}

li:before {
    content: '\2022';
    color: #CCCCCC;
    float: left;
    font-size: 29px;
    text-indent: -19px;
}

img {
    max-width: 100%;
    vertical-align: baseline;
}

@media all and (max-width:848px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    header {
        padding: 16px;
    }

    article {
        padding: 0 16px;
    }

    figure {
        margin: 0 -16px;
    }

    footer {
        padding: 0 16px 16px;
    }

    h3 {
        margin-top: 20px;
    }

    .button {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media all and (max-width:480px) {
    ul li {
        padding-left: 16px;
    }
}