 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Roboto', Arial, sans-serif;
     font-size: 16px;
     line-height: 22px;
 }

 #wrapper {
     max-width: 800px;
     margin: 16px auto;
     border: 1px solid #000;
     background-color: #fff;
     padding: 40px 60px;
 }

 header {
     display: flex;
     justify-content: flex-end;
 }

 article {
     padding: 20px 0 0;
 }

 p {
     margin-top: 10px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 21px;
     line-height: 24px;
     padding: 0px;
     margin: 0px;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
 }

 ul {
     list-style: none;
     margin-left: 18px;
     padding-bottom: 20px;
 }

 ul li {
     padding-left: 19px;
 }

 ul li ul {
     padding-bottom: 0;
     margin-left: 26px;
 }

 li:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 23px;
     text-indent: -19px;
 }

 ul li ul li:before {
     content: "o";
     color: #000;
     float: left;
     font-size: 15px;
     text-indent: -19px;
     margin-top: -2px;
 }

 a {
     color: #00F;
     text-decoration: underline;
     white-space: nowrap;
 }

 img {
     max-width: 100%;
     display: block;
 }

 @media only screen and (max-width:800px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }
 }