* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 800px;
    margin: 12px auto;
    background-color: #fff;
    overflow: hidden;
    color: #000000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 75%);
}

#wrapper .button a {
    padding: 10px 15px;
    background: #1770F0;
    color: #fff;
    margin: 6px 0;
    display: inline-block;
}

#wrapper .color {
    color: #0078D7;
}

#wrapper .header {
    position: relative;
}

#wrapper .header a {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 17%;
    height: 17%;
    z-index: 1;
}

#wrapper .article {
    padding: 16px 32px 0;
}

#wrapper .footer {
    padding: 0 32px 16px;
}

#wrapper p {
    margin-bottom: 13px;
    text-align: justify;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #1770F0;
    text-align: center;
}

#wrapper h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #1770F0;
}

#wrapper .blue {
    color: #0089c6;
}

#wrapper a {
    color: #1770F0;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 13px;
    list-style: none;
}

#wrapper ul ul {
    margin-bottom: 0;
}

#wrapper ul ul li:before {
    content: '\25cb';
    font-family: "Times New Roman", serif;
    font-size: 16px;
}

#wrapper ul li {
    padding-left: 40px;
    position: relative;
}

#wrapper ul li:before {
    content: '\2022';
    color: #000;
    font-size: 21px;
    position: absolute;
    top: -1px;
    left: 22px;
    line-height: 1;
    font-family: Arial, sans-serif;
}

#wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

#wrapper .nobr {
    white-space: nowrap;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 8px;
        border: none;
    }

    #wrapper p {
        text-align: left;
    }

    #wrapper .header a {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

@media all and (max-width: 699px) {
    #wrapper .article {
        padding: 16px 16px 0;
    }

    #wrapper .footer {
        padding: 0 16px 16px;
    }
}

@media all and (max-width: 500px) {
    #wrapper {
        font-size: 14px;
    }

    #wrapper ul li {
        padding-left: 16px;
    }

    #wrapper ul li:before {
        left: 0;
    }

    #wrapper .logo {
        margin: 16px;
        justify-content: center;
    }
}