* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
}

#wrapper {
    max-width: 760px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.75);
}

#wrapper .button {
    display: flex;
    justify-content: center;
}

#wrapper .button a {
    display: inline-block;
    background: #005e9d;
    color: #fff !important;
    padding: 10px 40px;
    border-radius: 40px;
    transition: 0.5s;
}

#wrapper .button a:hover {
    background: #1974b1;
}

#wrapper .hide {
    display: none;
}

#wrapper .header {
    padding: 40px 16px;
    display: flex;
    justify-content: center;
}

#wrapper .article {
    padding: 0 80px 30px;
}

#wrapper p {
    margin-bottom: 16px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px 0;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #005e9d;
    line-height: 1.2;
}

#wrapper h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #005e9d;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin: 0 0 20px 23px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 26px;
    margin-bottom: 6px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 25px;
    position: absolute;
    top: -2px;
    left: 0;
    font-family: Arial, sans-serif;
    line-height: 1;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media (max-width: 759px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        text-wrap: pretty;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .article {
        padding: 0 5% 5%;
    }

    #wrapper p {
        text-align: left;
    }
}

@media all and (max-width: 499px) {
    #wrapper ul {
        margin-left: 0;
    }
}