@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v43-latin-regular.eot');
    src: url('../fonts/open-sans-v43-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v43-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v43-latin-regular.woff') format('woff'), url('../fonts/open-sans-v43-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v43-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-v43-latin-700.eot');
    src: url('../fonts/open-sans-v43-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v43-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v43-latin-700.woff') format('woff'), url('../fonts/open-sans-v43-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v43-latin-700.svg#OpenSans') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #231f20;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

#wrapper {
    max-width: 592px;
    margin: 16px auto;
    border: 2px solid #231f20;
    padding: 20px 16px 0;
    background-color: #fff;
    position: relative;
}

header {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 9;
}

footer {
    border-top: 1px solid #231f20;
    padding: 16px 0 0;
}

footer p {
    text-align: center;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 30px;
    font-weight: 400;
    font-size: 19px;
    line-height: 26px;
}

h2 {
    margin: 0 0 50px;
    font-weight: 700;
    font-size: 25.5px;
    line-height: 32px;
    color: #de2536;
    position: relative;
}

h2 img {
    position: absolute;
    bottom: -46px;
    z-index: 999;
}

h2 span {
    font-size: 50px;
    margin: 0 8px 0 14px;
}


:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 0 0 16px;
    list-style: none;
    font-weight: 700;
    color: #de2536;
}

ul li {
    padding-left: 18px;
    margin: 0 0 6px;
}

li:before {
    content: '\2022';
    float: left;
    margin-top: 2px;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: -14px;
}

span {
    white-space: nowrap;
}

img {
    max-width: 100%;
}

@media all and (max-width: 591px) {
    #wrapper {
        margin: 0 auto;
        padding: 1rem;
        border: none;
    }

    header {
        position: static;
        display: flex;
        justify-content: center;
        padding: 0 0 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    h2 br {
        display: none;
    }

    h2 {
        margin: 0 0 16px;
    }

    h2 img {
        position: static;
        display: block;
        margin: 5px auto 0;
    }

    :is(h2, h1) {
        text-align: center;
    }


    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

}