* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 890px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 100px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 16px 0;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #00577a;
}

h2 {
    margin: 16px 0;
    font-size: 15px;
    font-weight: 400;
    color: #00577a;
}

a {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 50px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 20px;
    text-indent: -25px;
}

img {
    max-width: 100%;
}

@media all and (max-width:888px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
    }

    ul li {
        padding-left: 16px;
    }

    li:before {
        text-indent: -16px;
    }

    span {
    	white-space: nowrap;
    }

    br {
        display: none;
    }
}