* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 824px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 60px 80px;
    background-color: #fff;
    overflow: hidden;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 19px;
    font-weight: 400;
}

header {
    padding: 0 0 16px;
    display: flex;
    justify-content: flex-end;
}

.margin {
	margin: 0 0 32px;
}

p {
    margin: 0 0 20px;
    text-align: justify;
}

.bg {
    background: #ffff00;
    color: #ff0000;
    padding: 1px;
}

.mb0 {
    margin: 0;
}

strong {
    font-weight: 700;
}

h1 {
    margin: 20px 0;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

h1 span {
    font-weight: 400;
}

h2 {
    font-size: 15px;
    font-weight: 700;
}

h3 {
    margin: 16px 0px;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
}

a {
    color: #0563c1;
    text-decoration: underline;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 54px;
}

li:before {
    content: "\2022";
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    text-indent: -26px;
}

img {
    max-width: 100%;
}

@media all and (max-width:823px) {
    #wrapper {
   	margin: 0;
        padding: 16px;
        border: none;
        hyphens: auto;
    }

    span {
    	white-space: nowrap;
    }

    p {
    	text-align: left;
    }

    ul li {
        padding-left: 20px;
    }

    li:before {
        text-indent: -20px;
    }

    br {
        display: none;
    }
}