 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Roboto', sans-serif;
     font-size: 16px;
     line-height: 21px;
 }

 #wrapper {
     max-width: 520px;
     margin: 16px auto;
     border: 1px solid #000;
     background-color: #fff;
     padding: 16px 23px;
 }

 footer {
     padding: 10px 0 0;
 }

 figure {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px
 }

 footer p {
     font-size: 84%;
     display: flex;
     justify-content: space-between;
     gap: 5px;
     padding-top: 5px;
     font-weight: bold;
 }

 p {
     margin-top: 10px;
     text-align: justify;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 23px;
     line-height: 1.1;
     padding-left: 19px;
     margin: 10px 0 0 5px
 }

 h1+p {
     margin-top: 5px;
 }

 h1:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 27px;
     text-indent: -19px;
     font-family: Arial, Helvetica, sans-serif;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #000;
     text-decoration: none;
 }

 @media only screen and (max-width: 520px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     p {
         text-align: left;
     }

     footer p {
         flex-direction: column;
         align-items: center;
     }

     .no {
         display: none
     }

     p span,a {
         white-space: nowrap;
     }
 }