* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 999px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #333333;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .logo {
    padding: 16px 50px;
}

#wrapper .article {
    margin-top: 16px;
    padding: 0 50px;
}

#wrapper .footer {
    padding: 0 50px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper .button a {
    display: inline-block;
    background: #BE1822;
    color: #fff !important;
    padding: 10px 20px;
    margin-bottom: 16px;
}

#wrapper .button a:hover {
    text-decoration: underline;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 16px;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 700;
    color: #bd101e;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #bd101e;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #bd101e;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 16px;
    margin-left: 12px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 15px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    position: absolute;
    top: -3px;
    left: 0;
    font-family: Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
}

#wrapper .p {
    line-height: 26px;
}

#wrapper .p img {
    display: inline-block;
    margin-right: 5px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media (max-width: 998px) {
    #wrapper {
        margin: 0;
        border: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}

@media all and (max-width: 709px) {
    #wrapper h1 {
        font-size: 25px;
        line-height: 1.2;
    }

    #wrapper .logo {
        padding: 16px;
    }

    #wrapper .article {
        padding: 10px 16px 0;
        margin: 0;
    }

    #wrapper .footer {
        padding: 0 16px;
    }
}

@media all and (max-width: 500px) {
    #wrapper .logo {
        display: flex;
        justify-content: center;
    }

    #wrapper .button {
        text-align: center;
    }

    #wrapper ul {
        margin-left: 0;
    }
}