﻿ :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: 560px;
     margin: 1rem auto;
     border: 8px solid #95d3e1;
     overflow: hidden;
     background: #fff url(background.jpg) no-repeat;
     padding: 1rem 1rem 1px;
 }

 header {
     margin: 0;
 }

 article {
     margin: 0;
 }

 footer {
     margin: 0;
     position: relative;
 }

 :is(h1, h2) {
     font-weight: 700;
 }

 strong {
     font-weight: 500;
 }

 h1 {
     margin: 0 0 6px;
     font-size: 27px;
     line-height: 29px;
 }

 h2 {
     font-size: 17px;
     margin: 1rem 0;
     line-height: 20px;
 }

 h3 {
     font-size: 1rem;
     margin: 8px 0 2px;
     line-height: 1.25rem;
     font-weight: 500;
 }

 p {
     margin: 0 0 8px;
     text-align: justify;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     white-space: nowrap;
     text-decoration: none;
 }

 ul {
     margin: 0;
     list-style: none;
 }

 ul li {
     padding-left: 1rem;
 }

 ul li:before {
     content: "\2022";
     float: left;
     font-family: Arial, sans-serif;
     font-size: 1.5625rem;
     text-indent: -1rem;
 }

 img {
     max-width: 100%;
 }

 .logo {
     position: absolute;
     top: 12px;
     right: 0;
 }

 @media all and (max-width:559px) {
     #wrapper {
         margin: 0 auto;
         border: none;
         background-size: contain;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
         text-align: left;
     }

     br:not(footer br) {
         display: none;
     }
 }

 @media all and (max-width:480px) {
     .logo {
         position: static;
     }
 }