﻿ :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Roboto', Arial, sans-serif;
     color: #000;
     line-height: 1.25rem;
     font-size: 1rem;
     font-weight: 400;
 }

 #wrapper {
     position: relative;
     max-width: 520px;
     margin: 1rem auto;
     border: 1px solid #000;
     overflow: hidden;
     background-color: #fff;
     padding: 1rem;
 }

 header {
     margin: 0 0 10px;
 }

 article {
     margin: 0;
 }

 footer {
     margin: 0;
 }

 :is(strong, h1, h2, h3) {
     font-weight: 700;
 }

 h1 {
     margin: 1rem 0;
     font-size: 39px;
     line-height: 1;
     text-align: center;
     color: #da1f3d;
 }

 h2 {
     font-size: 20px;
     margin: 8px 0;
     line-height: 21px;
 }

 h3 {
     font-size: 22px;
     margin: 1rem 0;
     line-height: 1.1;
 }

 p {
     margin: 0 0 1rem;
     text-align: justify;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     white-space: nowrap;
     text-decoration: none;
 }

 ul {
     margin: 0;
     list-style: none;
 }

 ul li {
     padding-left: 1.25rem;
 }

 ul li:before {
     content: "\2022";
     float: left;
     font-family: Arial, sans-serif;
     font-size: 1.5625rem;
     text-indent: -1.25rem;
 }

 img {
     max-width: 100%;
 }

 .font {
     font-size: 22px;
     line-height: 24px;
 }

 @media all and (max-width:519px) {
     #wrapper {
         margin: 0 auto;
         border: none;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
         text-align: left;
     }

     br:not(footer br) {
         display: none;
     }
 }