* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 840px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 100px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: justify;
    hyphens: auto;
}

header {
    padding: 0 0 16px;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 0 0 20px;
}

p {
    margin: 0 0 14px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0px;
    padding: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

h2 {
    margin: 40px 0 14px;
    font-size: 16px;
    font-weight: 400;
}

h3 {
    margin: 16px 0px;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}

a {
    color: #0563C1;
    text-decoration: underline;
}

ul {
    margin: 0 0 30px;
    list-style: none;
}

ul li {
    padding-left: 50px;
}

li:before {
    content: "\2022";
    color: #000;
    float: left;
    font-size: 28px;
    text-indent: -25px;
}

img {
    max-width: 100%;
}

@media all and (max-width:839px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
        text-align: left;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }

    br {
        display: none;
    }
}