* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: #f0f0f0;
    font-family: "Roboto", Arial, sans-serif;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    overflow: hidden;
    padding: 0 20px 20px;
}

#wrapper header {
    background: url(background.jpg);
    background: no-repeat;
    width: 33%;
    justify-self: center;
    margin-top: 20px;
}

#wrapper .center {
    text-align: center;
}

#wrapper .banner {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 23px;
}

#wrapper hr {
    border: none;
    border-bottom: 3px solid #f2f2f2;
    margin: 15px 0;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 17px;
}

#wrapper article {
    padding: 10px;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #009aa3;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 700;
    color: #009aa3;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #009aa3;
    text-decoration: none;
}

#wrapper .button {
    display: flex;
    justify-content: left;
}

#wrapper .button a {
    display: inline-block;
    background: #149a9a;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 28px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #149a9a;
}

#wrapper .button a:hover {
    display: inline-block;
    background: #202e31;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 28px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #202e31;
}

#wrapper ul {
    margin-left: 4px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: "\2022";
    font-size: 22px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper ul ul li:before {
    content: "\25cb";
    top: 1px;
    line-height: 1;
    font-size: 15px;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        padding: 0 16px 16px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }
}
