* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 12px auto;
    border: 1px solid #0c556e;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "PT Sans", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
}

#wrapper .button {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #fff;
    color: #0c556e;
    border-radius: 5px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    padding: 20px;
}

#wrapper .article {
    padding: 20px 30px;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #0c556e;
}

#wrapper .footer p {
    text-align: center;
    color: #fff;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #0c556e;
    text-align: center;
}

#wrapper h2 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0c556e;
}

#wrapper a {
    color: #fff;
    text-decoration: none;
}

#wrapper ul {
    margin-left: 5px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

#wrapper ul li:before {
    content: '\2022';
    color: #be1622;
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 0;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .box {
    border: 1px solid #ccc;
    padding: 12px;
    margin-top: 20px;
}

@media all and (max-width: 899px) {
    #wrapper {
        margin: 0;
        border: none;
        font-size: 16px;
    }

    #wrapper .article,
    #wrapper .logo,
    #wrapper .footer {
        padding: 16px;
    }
}