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

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 820px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    color: #000000;
    font-family: "Barlow", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

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

#wrapper .hide {
    display: none;
}

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

#wrapper .article {
    padding: 20px 30px 15px;
}

#wrapper .footer {
    padding: 20px 30px;
    background: #38A838 url(background.jpg) no-repeat;
    background-size: cover;
}

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

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

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #38A838;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #475FA5;
}

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

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

#wrapper .button a {
    display: inline-block;
    background: #475FA5;
    color: #fff;
    padding: 10px 18px;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.5s;
}

#wrapper .button a:hover {
    background: #4d69be;
}

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

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

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

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

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

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

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

@media all and (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}