 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Source Sans Pro', sans-serif;
     font-size: 17px;
     line-height: 22px;
 }

 #wrapper {
     max-width: 620px;
     margin: 16px auto;
     border: 1px solid #000;
     background-color: #fff;
     padding: 16px;
 }

 .title {
     background: #cccccc;
     padding: 10px 16px;
     margin: 10px -16px 6px;
 }

 p {
     margin-top: 10px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 20px;
     line-height: 26px;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
 }

 h3 {
     font-size: 19px;
     line-height: 1.1;
     padding-top: 10px;
 }

 h3+p {
     margin-top: 0;
 }

 :is(h1, h2, h3, .font) {
     font-family: 'Noto Sans', sans-serif;
 }

 ul {
     list-style: none;
     padding-bottom: 10px;
 }

 ul li {
     padding-left: 25px;
 }

 li:before {
     content: ". . .";
     color: #000;
     float: left;
     font-size: 17px;
     text-indent: -25px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #000;
     text-decoration: none;
 }

 @media only screen and (max-width:620px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     footer p :first-of-type br {
         display: none
     }
 }