 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/roboto-v30-latin-regular.eot');
     src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/roboto-v30-latin-700.eot');
     src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-size: 16px;
     line-height: 20px;
     font-family: 'Roboto', Arial, sans-serif;
     color: #000;
     font-weight: 400;
 }

 #wrapper {
     position: relative;
     max-width: 783px;
     margin: 16px auto;
     border: 1px solid #000;
     padding: 16px;
     overflow: hidden;
     background-color: #fff;
 }

 :is(strong, h1, h3, footer p) {
     font-weight: 700;
 }

 h1 {
     margin: 12px 0;
     font-size: 34px;
     line-height: 1.2;
     text-align: center;
 }

 h1 span {
     display: block;
     font-size: 21px;
 }

 h2 {
     font-size: 16px;
     line-height: 19px;
     font-weight: 700;
     padding-bottom: 10px;
 }

 h3 {
     font-size: 22px;
     line-height: 1.125;
 }

 :is(p, ul) {
     text-align: justify;
     hyphens: auto;
 }

 p {
     margin-bottom: 12px;
 }

 header p {
     font-size: 17px;
 }

 article a {
     text-decoration: underline !important;
 }

 .title p {
     text-align: center;
     font-size: 16px;
 }

 footer {
     display: flex;
     justify-content: flex-start;
     align-items: flex-end;
     flex-wrap: wrap;
     gap: 12px 20px;
     margin-top: 12px;
 }

 footer p {
     font-size: 22px;
     line-height: 1.125;
     margin-bottom: 0;
 }

 img {
     max-width: 100%;
     vertical-align: middle;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: inherit;
     text-decoration: none;
     white-space: nowrap;
 }

 ul {
     margin: 0 0 12px;
     list-style: none;
 }

 ul li {
     padding-left: 17px;
 }

 ul li:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 16px;
     text-indent: -17px;
     line-height: 1;
     font-family: Arial, sans-serif;
     margin-top: 3px;
 }

 @media (max-width:782px) {
     #wrapper {
         margin: 0;
         padding: 16px;
         border: none;
     }

     p {
         text-align: left;
         hyphens: auto;
         text-wrap: pretty;
     }

     p span {
         white-space: nowrap;
     }

     :is(ul, p) {
         text-align: left;
     }
 }