* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 840px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 50px 90px 90px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

header {
    padding: 0 0 18px;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 0 0 20px;
}

.center {
    text-align: center;
}

p {
    margin: 0 0 22px;
    text-align: justify;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 0 0 22px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

h1 span {
    display: block;
    font-weight: 400;
}

h2 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
}

a {
    color: #0000ff;
    text-decoration: underline;
}

ul {
    padding: 0 0 22px;
    list-style: none;
}

ul li {
    padding-left: 57px;
}

li:before {
    content: "\2022";
    float: left;
    line-height: 1.2;
    font-size: 22px;
    text-indent: -26px;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

@media all and (max-width:838px) {
    #wrapper {
        padding: 6%;
        border: none;
        margin: 0;
    }

    p {
        text-align: left;
    }

    p span {
        white-space: nowrap;
    }
}

@media all and (max-width: 600px) {
    #wrapper {
        padding: 1rem;
    }

    header {
        justify-content: center;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }
}