* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 1px 1px 10px #ccc;
    background-color: #fff;
    overflow: hidden;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 20px 50px;
}

#wrapper .footer {
    padding: 20px 50px 6px;
    background: #FF0000;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #FF0000;
    color: #fff !important;
    #FF0000: 5px;
    border-radius: 5px;
}

#wrapper .button a:hover {
    background: #c10909;
}

#wrapper .footer h3,
#wrapper .footer p {
    color: #fff !important;
}

#wrapper p {
    margin-bottom: 15px;
}

#wrapper p.center {
    text-align: center;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 span {
    font-size: 20px;
}

#wrapper h1 {
    margin-bottom: 25px;
    font-size: 25px;
    font-weight: 700;
    color: #FF0000;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
    color: #1b2d60;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article,
    #wrapper .footer {
        padding: 16px;
    }
}

@media all and (max-width: 499px) {
    #wrapper {
        font-size: 15px;
    }

    #wrapper ul {
        margin-left: 0;
    }
}