 :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: #0066b3;
 }

 #wrapper {
     margin: 1rem auto;
     max-width: 442px;
     background: #fff;
     border: solid thin #002f67;
 }

 article {
     padding: 6px 25px 0;
 }

 .flex-box {
     display: flex;
     gap: 12px;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 13px;
 }

 .flex-box-content:nth-of-type(1) {
     width: 74%;
 }

 .margin-bottom {
     margin-bottom: 0;
 }

 :is(h1, strong) {
     font-weight: 700;
 }

 h1 {
     font-size: 19px;
     margin: 13px 0;
     color: #f36f21;
     line-height: 1.2;
 }

 h1:before {
     font-size: 20px;
     margin-right: 7px;
     position: relative;
     top: -1px;
     float: left;
     content: "\2022";
 }

 p {
     margin-bottom: 16px;
     text-align: justify;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #0066b3;
     text-decoration: none;
 }

 img {
     max-width: 100%;
 }

 footer {
     padding: 0 25px 16px;
 }

 @media screen and (max-width: 441px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     :is(h1, p, ul li) {
         hyphens: auto;
         text-wrap: pretty;
     }

     :is(p a, span) {
         white-space: nowrap;
     }

     p {
         text-align: left !important;
     }

     br:not(br.mobile-block) {
         display: none;
     }
 }

 @media screen and (max-width: 386px) {
    .flex-box{
        flex-direction: column;
    }

    .flex-box-content{
        width: 100% !important;
    }
 }