 @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: 1.375;
     font-family: 'Roboto', Arial, sans-serif;
     color: #000;
     font-weight: 400;
 }

 #wrapper {
     position: relative;
     max-width: 910px;
     margin: 16px auto;
     border: 1px solid #000;
     overflow: hidden;
     background-color: #fff;
 }

 h1 {
     margin: 0 0 16px;
     font-size: 25px;
     line-height: 1.3;
     font-weight: 700;
 }

 h2 {
     margin: 16px 0;
     font-size: 16px;
     line-height: 20px;
     font-weight: 400;
 }

 .content {
     max-width: 780px;
     padding: 16px;
     margin: 46px auto;
 }

 .background {
     background-color: #F5F5F5;
     padding: 12px;
     display: grid;
     grid-template-columns: auto auto auto auto;
     gap: 12px;
     align-items: flex-start;
     margin: 16px 0;
 }

 .background>div {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 4px;
 }

 .background p {
     text-align: center;
     font-size: 13px;
     line-height: 1.5;
 }

 footer .logo {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 12px;
     margin: 16px 0;
 }

 .logo p {
     flex: 1 1 0;
 }

 footer p {
     text-align: justify;
 }

 img {
     max-width: 100%;
     vertical-align: middle;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
     white-space: nowrap;
 }

 a.link {
     color: #0462C1;
     text-decoration: underline;
 }

 ul {
     margin: 0 0 16px;
     list-style: none;
 }

 ul li {
     padding-left: 24px;
 }

 ul li:before {
     content: "\2022";
     color: #000;
     float: left;
     margin: -1px 0 0 -24px;
     font-size: 23px;
     line-height: 1em;
     font-family: Arial, Helvetica, sans-serif;
 }

 @media (max-width: 910px) {
     #wrapper {
         margin: 0;
         border: none;
     }

     :is(p:not(.background p), ul) {
         hyphens: auto;
     }

     br:not(footer br, .background br) {
         display: none;
     }

     footer p {
         text-align: left;
     }

     span {
         white-space: nowrap;
     }
 }

 @media (max-width: 767px) {
     .content {
         margin: 0 auto;
     }

     .background {
         grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
     }

     .background br {
         display: none;
     }
 }

 @media (max-width: 592px) {
     footer .logo {
         flex-direction: column;
     }

     .logo p {
         width: 100%;
         text-align: center;
     }
 }