﻿ :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: 480px;
     margin: 1rem auto;
     border: 1px solid #000;
     overflow: hidden;
     background-color: #fff;
 }

 header {
     padding: 0 10px 0 0;
     display: flex;
     justify-content: space-between;
     flex-direction: row-reverse;
     position: relative;
     z-index: 9;
     flex-wrap: wrap;
 }

 article {
     position: relative;
     margin: -10px 0 0;
 }

 footer {
     margin: 0;
 }

 :is(strong, h1, h2, h3) {
     font-weight: 700;
 }

 h1 {
     margin: 1.125rem 0;
     font-size: 30px;
     line-height: 1.3;
     color: #FFF;
 }

 h1 small {
     display: block;
     font-size: 11px;
 }

 h2 {
     font-size: 24px;
     line-height: 1.2;
     position: absolute;
     bottom: 10px;
     left: 18px;
 }

 h3 {
     font-size: 0.8125rem;
     margin: 1rem 0;
     line-height: 1.125rem;
 }

 p {
     margin: 0 0 1rem;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #2fb5e7;
     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%;
     vertical-align: bottom;
 }

 .title {
     position: absolute;
     top: 59px;
     left: 18px;
 }

 .logo {
     margin-top: 5px;
 }

 @media all and (max-width:479px) {
     #wrapper {
         margin: 0 auto;
         border: none;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
     }

     .title {
         top: 9%;
     }

     header {
         justify-content: center;
         gap: 6px;
     }

     article {
         margin-top: 0
     }

     h1 {
         font-size: 6.5vw;
     }

     h2 {
         font-size: 5vw;
     }
 }