* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 850px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 60px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

header {
    display: flex;
    justify-content: flex-end;
}

.border {
    border: 1px solid #000;
    padding: 10px;
}

.border p {
    margin: 0;
}

.margin {
    margin-top: 0;
}

p {
    margin: 0 0 20px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 25px 0 20px;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

h2 {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 700;
}

a {
    color: #000;
    text-decoration: none;
}

.link {
    text-decoration: underline;
    color: #0000ff;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 24px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    text-indent: -24px;
}

img {
    max-width: 100%;
}

@media all and (max-width:848px) {
    #wrapper {
        padding: 16px;
        border: none;
        margin: 0;
    }

    header {
        justify-content: center;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }

    span {
        white-space: nowrap;
    }

    br {
        display: none;
    }
}