* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 810px;
    margin: 16px auto;
    border: 1px solid #000;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
}

article {
    padding: 10px 16px 0;
}

footer {
    padding: 0 16px 2px;
}

.color {
    color: #3a434f;
    font-size: 14px;
}

p {
    margin: 0 0 14px;
    text-align: justify;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 14px 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #00607b;
}

h2 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}

h3 {
    margin: 0 0 14px;
    font-weight: 400;
    font-size: 15px;
    color: #00607b;
}

a {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 14px;
    list-style: none;
}

ul li {
    padding-left: 20px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 15px;
    text-indent: -20px;
}

img {
    max-width: 100%;
}

@media all and (max-width:808px) {
    #wrapper {
        font-size: 14px;
        line-height: 20px;
        border: none;
    }

    :is(h3, h2) {
        font-size: 16px;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    p {
        text-align: left;
    }
}