 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Noto Sans', sans-serif;
     font-size: 15px;
     line-height: 23px;
 }

 #wrapper {
     max-width: 838px;
     margin: 16px auto;
     background-color: #fff;
     box-shadow: -0.5px 3px 15px #999;
     padding: 43px 100px;
 }

 header {
     display: flex;
     justify-content: flex-start;
 }

 article {
     padding: 30px 0;
 }

 footer {
     padding: 0px;
 }

 p {
     margin-top: 10px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 21px;
     line-height: 29px;
     margin: 10px 0 0;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
     margin-top: 20px;
 }

 :is(h1, h2) {
     color: #0462c1
 }

 ul {
     list-style: none;
 }

 ul li {
     padding-left: 19px;
     margin-top: 8px;
 }

 li:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 24px;
     text-indent: -19px;
     font-family: Arial, Helvetica, sans-serif;
 }

 a {
     color: #00F;
     text-decoration: underline;
     white-space: nowrap;
 }
 
 span {
     color: #00F !important;
	 text-decoration: underline;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .button a {
     background: #0aa6ff;
     padding: 10px;
     text-align: center;
     color: #fff;
     border-radius: 7px;
     display: block;
     text-decoration: none;
     font-weight: 700
 }

 @media only screen and (max-width:838px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }
 }