* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 900px;
    margin: 16px auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
    background-color: #fff;
    overflow: hidden;
    font-family: "Roboto", Arial, sans-serif;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper .title {
    background: #004E7E;
    padding: 16px;
    margin: -130px -20px 16px;
    border-radius: 10px;
    position: relative;
}

#wrapper .title h3,
#wrapper .title p {
    color: #fff;
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    padding: 11px 30px;
    background: #004E7E;
    color: #fff !important;
    border-radius: 5px;
}

#wrapper .button a:hover {
    opacity: 0.9;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper .hide {
    display: none;
}

#wrapper .article {
    padding: 0 90px 30px;
}

#wrapper .center {
    text-align: center;
    margin: 0 50px 20px;
}

#wrapper p {
    margin-bottom: 13px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

#wrapper h3 {
    margin-bottom: 7px;
    font-size: 18px;
    font-weight: 700;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 14px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 30px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    font-size: 25px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -3px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 899px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 16px 28px;
    }
}

@media (max-width: 699px) {
    #wrapper .title {
        margin-top: -14%;
    }

    #wrapper .center {
        margin: 0 0 15px;
    }

    #wrapper ul li {
        padding-left: 15px;
    }
}