:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
}

#wrapper {
    max-width: 610px;
    margin: 16px auto;
    border: 4px solid #ec222e;
    padding: 20px 20px 10px;
    background: #fff;
}

header {
    padding: 0 0 16px;
    display: flex;
    justify-content: center;
}

p {
    margin: 0 0 16px;
    text-align: justify;
}

strong {
    font-weight: 700;
    color: #ec222e;
}

h1 {
    margin: 10px 0;
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
    color: #ec222e;
}

h2 {
    font-size: 15px;
    line-height: 24px;
    color: #ec222e;
}

h3 {
    color: #ec222e;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

h2 a {
    color: #ec222e !important;
}

h1 small {
    font-size: 15px;
    line-height: 20px;
}

@media all and (max-width: 609px) {
    #wrapper {
        margin: 0;
        padding: 16px 16px 1px;
        border: none;
    }

    p {
        text-align: left;
    }

    h2 :is(span, a) {
        white-space: nowrap;
    }
}