:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 13px;
    line-height: 20px;
    font-family: Arial, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    max-width: 786px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

h1 {
    margin: 6px 0 15px;
    text-align: center;
    color: #800080;
    font-size: 19px;
    line-height: 27px;
}

h2 {
    font-size: 13px;
    padding: 10px 0px 0;
    line-height: 18px;
    color: #800080;
}

p:not(:last-child) {
    margin-bottom: 24px;
}

p {
    text-align: justify;
    hyphens: auto;
    text-wrap: pretty;
}

article {
    padding: 10px 45px 0px 45px;
}

footer {
    padding: 24px 45px 81px 45px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #3c81ff;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    margin: 15px 0 25px;
    list-style: none;
}

ul li {
    padding-left: 25px;
}

ul li:before {
    text-indent: -25px;
    content: "\2022";
    color: #000;
    float: left;
    margin-left: 0px;
    font-size: 21px;
    margin-top: 0px;
}

img {
    max-width: 100%;
}

span {
    white-space: nowrap;
}

@media all and (max-width:786px) {
    #wrapper {
        margin: 0;
        border: none;
    }
	
	h1 {
		font-size: 18px;
	}

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
        text-align: left;
    }
}

@media all and (max-width:767px) {
    article {
        padding: 1rem;
    }

    footer {
        padding: 0 1rem 1rem;
    }
}