 :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     min-height: 100%;
 }

 body {
     font-family: 'Roboto', Arial, sans-serif;
     font-weight: 400;
     font-size: 16px;
     line-height: 23px;
     color: #231f20;
 }

 #wrapper {
     margin: 1rem auto;
     max-width: 526px;
     background: #fff;
     border: 3px solid #cb222b;
     padding: 16px 20px;
 }

 header {
     margin: 0 0 10px;
     text-align: right;
 }

 .margin-bottom {
     margin-bottom: 0;
 }

 .color {
     color: #cb222b !important;
 }

 :is(h1, h2, strong) {
     font-weight: 700;
 }

 :is(h1, h2) {
     line-height: 1.2;
 }

 h1 {
     font-size: 28px;
     margin-bottom: 10px;
 }

 h1 small {
     font-size: 78%;
 }

 h2 {
     font-size: 16px;
 }

 p {
     margin-bottom: 16px;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #231f20;
     text-decoration: none;
 }

 img {
     max-width: 100%;
 }

 ul {
     margin: 0 0 10px 15px;
 }

 ul li {
     list-style: none;
     text-indent: -15px;
 }

 ul li:before {
     font-size: 20px;
     margin-right: 15px;
     position: relative;
     top: -1px;
     float: left;
     content: "-";
 }

 footer {
     display: flex;
     justify-content: space-between;
     gap: 10px;
 }

 .footer-flex-content {
     width: 78%;
 }

 @media screen and (max-width: 519px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     :is(h1, h2, p, ul li) {
         hyphens: auto;
         text-wrap: pretty;
     }

     :is(p a, span) {
         white-space: nowrap;
     }

     br:not(br.mobile-block) {
         display: none;
     }
 }

 @media screen and (max-width: 519px) {
    footer{
        flex-direction: column;
        align-items: center;
    }

    .footer-flex-content{
        width: 100%;
    }
 }