 @font-face {
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/roboto-v30-latin-700.eot');
     src: local(''), 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');
 }

 :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     min-height: 100%;
 }

 body {
     font-size: 16px;
     line-height: 18px;
     font-family: 'Roboto', Arial, sans-serif;
     color: #fff;
     font-weight: 700;
 }

 #wrapper {
     position: relative;
     max-width: 550px;
     margin: 1rem auto;
     border: 1px solid #000;
     overflow: hidden;
     background-color: #fff;
 }

 h1 {
     margin: 0 0 5px;
     font-size: 17px;
     position: relative;
     line-height: 17px;
     font-weight: 700;
     text-align: right;
     letter-spacing: 1px;
 }

 h1 span {
     font-size: 24px;
 }

 h2 {
     font-size: 15px;
     text-align: right;
     position: relative;
     margin: 0 0 16px;
     line-height: 15px;
     font-weight: 700;
     letter-spacing: 2px;
 }

 h3 {
     font-size: 17px;
     margin: 0 0 10px;
     font-weight: 700;
     text-align: right;
     color: #3c7681;
     line-height: 21px;
     position: relative;
 }

 article {
     position: absolute;
     top: 118px;
     padding: 0 16px 0 0;
     right: 0;
 }

 footer {
     bottom: 14px;
     position: absolute;
     display: flex;
     right: 15px;
     gap: 48px;
     text-align: center;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #3c7681;
     text-decoration: none;
     white-space: nowrap;
 }

 img {
     max-width: 100%;
     vertical-align: bottom;
 }

 .color {
     color: #fff !important;
 }

 .fontsize {
     font-size: 20px;
 }

 @media (max-width: 549px) {
     #wrapper {
         margin: 0;
         border: none;
         background: #4ebecc;
     }

     :is(article, footer, h1, h2, h3) {
         position: static;
         text-align: center;
     }

     article {
         padding: 16px;
     }

     :is(h2, h3) {
         line-height: 1.4;
     }

     footer {
         justify-content: center;
         padding: 0 1rem 1rem;
         gap: 1rem;
         flex-wrap: wrap;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
     }

     br:not(footer br, h3 br) {
         display: none;
     }
 }