 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     min-height: 100%;
 }

 body {
     font-size: 13px;
     line-height: 20px;
     font-family: Arial, Helvetica, sans-serif;
     color: #000;
 }

 #wrapper {
     position: relative;
     max-width: 786px;
     margin: 1rem auto;
     border: 1px solid #000;
     overflow: hidden;
     background-color: #fff;
 }

 article {
     padding: 10px 45px 0;
 }

 footer {
     padding: 24px 45px 81px;
 }

 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;
 }

 h2 span {
     display: block;
     color: #000;
     font-weight: normal;
 }

 p:not(:last-child) {
     margin-bottom: 24px;
 }

 p {
     text-align: justify;
     hyphens: auto;
     text-wrap: pretty;
 }

 :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";
     float: left;
     font-size: 21px;
 }

 img {
     max-width: 100%;
 }

 span {
     white-space: nowrap;
 }

 @media all and (max-width:785px) {
     #wrapper {
         margin: 0;
         border: none;
     }

     :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;
     }
 }