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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 850px;
    margin: 16px auto;
    box-shadow: 0 0 10px 10px #cfcfcf;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .button {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 20px 35px;
    background: #009433;
    color: #fff !important;
    transition: .3s;
    border-radius: 5px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

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

#wrapper .hide {
    display: none;
}

#wrapper .center {
    text-align: center;
    color: #009433;
    font-size: 22px;
}

#wrapper .color {
    color: #009433;
}

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

#wrapper .article {
    padding: 20px 60px 0;
}

#wrapper .footer {
    padding: 0 60px 30px;
}

#wrapper p {
    margin-bottom: 17px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 20px;
    font-size: 29px;
    font-weight: 400;
    text-align: center;
    color: #009433;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 400;
    color: #009433;
}

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

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

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

#wrapper ul ul li:before {
    content: "\0025cb";
    top: 1px;
    font-size: 15px;
}

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

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

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

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

    #wrapper p {
        text-align: left;
    }

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

    #wrapper ul {
        margin-left: 5px;
    }

    #wrapper .article {
        padding: 16px 5% 0;
    }

    #wrapper .footer {
        padding: 0 5% 16px;
    }
}

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

    #wrapper h1 {
        font-size: 24px;
    }

    #wrapper h3 {
        font-size: 20px;
    }
}