* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

#wrapper {
    max-width: 834px;
    margin: 16px auto;
    background-color: #fff;
    overflow: hidden;
}

header {
    padding: 24px;
    border: 1px solid rgba(220, 223, 226, 0.8);
    border-bottom: 0;
}

article {
    padding: 0 24px;
}

.border {
    border: 1px solid rgba(220, 223, 226, 0.8);
    border-top: 0;
    margin: 0 -24px 38px;
}

footer {
    padding: 0 24px 16px;
}

span {
    white-space: nowrap;
}

p {
    margin: 0 0 28px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    font-size: 32px;
    line-height: 40px;
    color: #006d86;
    margin: 0 24px 24px;
}

h2 {
    font-size: 28px;
    line-height: 32px;
    margin: 40px 0 28px;
    color: #006d86;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 32px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 25px;
    line-height: 1.1;
    text-indent: -20px;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

@media all and (max-width:832px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    header {
        padding: 16px;
    }

    :is(header, .border) {
        border: none;
    }

    .border {
        margin: 0 -16px 26px;
    }

    :is(article, footer) {
        padding: 0 16px;
    }

    h1 {
        margin: 0 16px 16px;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }
}

@media all and (max-width:600px) {
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        text-align: center;
    }
}