 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/roboto-v48-latin-regular.eot');
     src: url('../fonts/roboto-v48-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v48-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v48-latin-regular.woff') format('woff'), url('../fonts/roboto-v48-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v48-latin-regular.svg#Roboto') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Roboto';
     font-style: normal;
     font-weight: 500;
     src: url('../fonts/roboto-v48-latin-500.eot');
     src: url('../fonts/roboto-v48-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v48-latin-500.woff2') format('woff2'), url('../fonts/roboto-v48-latin-500.woff') format('woff'), url('../fonts/roboto-v48-latin-500.ttf') format('truetype'), url('../fonts/roboto-v48-latin-500.svg#Roboto') format('svg');
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #1e1d20;
     font-family: 'Roboto', Arial, sans-serif;
     font-size: 16px;
     line-height: 20px;
     font-weight: 400;
 }

 #wrapper {
     max-width: 512px;
     margin: 1rem auto;
     border: 1px solid #1e1d20;
     background-color: #c1b2ac;
 }

 article {
     padding: 28px 52px 10px;
 }

 footer {
     padding: 0 52px 50px;
     display: flex;
     justify-content: flex-end;
 }

 p:not(:first-of-type) {
     margin-top: 10px;
 }

 h1 {
     font-size: 25px;
     line-height: 1.1;
     margin: 20px 0 0;
     font-weight: 400;
 }

 h1 sup {
     font-size: 53%;
     line-height: 0;
     position: relative;
     vertical-align: baseline;
 }

 sup {
     top: -0.5em;
 }

 h2 {
     font-size: 29px;
     line-height: 1.1;
 }

 .flex {
     margin-top: 30px;
     display: flex;
     gap: 25px;
     align-items: flex-start;
 }

 .flex p {
     font-weight: 500;
     font-size: 21px;
     line-height: 28px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(h2, strong) {
     font-weight: 500;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #1e1d20;
     text-decoration: none;
     white-space: nowrap;
 }

 @media only screen and (max-width:512px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     p {
         hyphens: auto;
         text-wrap: pretty
     }

     p span {
         white-space: nowrap;
     }

     :is(article, footer) {
         padding: 16px
     }
 }

 @media only screen and (max-width:360px) {
     .flex {
         flex-direction: column;
         align-items: center;
         gap: 15px
     }

     :is(p, h1, h2) {
         text-align: center;
     }
 }