 @font-face {
     font-display: swap;
     font-family: 'Roboto Condensed';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
     src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Roboto Condensed';
     font-style: normal;
     font-weight: 700;
     src: url('../fonts/roboto-condensed-v25-latin-700.eot');
     src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #221c22;
     font-family: 'Roboto Condensed', Arial, sans-serif;
     font-size: 18px;
     line-height: 24px;
     font-weight: 400;
 }

 #wrapper {
     max-width: 625px;
     margin: 1rem auto;
     border: 1px solid #68bc45;
     background-color: #fff;
     padding: 20px 20px 0;
 }

 header {
     position: relative;
 }

 header p {
     font-weight: 700;
     color: #68bc45;
     width: 83%;
     font-size: 18px;
 }

 .logo {
     position: absolute;
     top: 4px;
     right: 0;
 }

 article {
     padding: 15px 0;
     position: relative;
 }

 .qr-code {
     position: absolute;
     bottom: 89px;
     right: -4px;
 }

 footer {
     padding: 10px 20px;
     margin: 0 -20px;
     background: #68bc45;
 }

 footer p {
     color: #fff;
     font-size: 20px;
     line-height: 28px;
 }

 p:not(:first-of-type) {
     margin-top: 10px;
 }

 h1 {
     font-size: 53px;
     line-height: 1.1;
     margin: 12px 0;
     color: #68bc45;
     text-align: center;
 }

 h2 {
     font-size: 18px;
     line-height: 21px;
 }

 ul {
     list-style: none;
     padding: 5px 0 20px;
 }

 ul li {
     padding-left: 13px;
     margin-top: 4px;
 }

 li:before {
     content: "\2022";
     color: #68bc45;
     float: left;
     font-size: 23px;
     text-indent: -13px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(h1, strong) {
     font-weight: 700;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #fff;
     text-decoration: none;
     white-space: nowrap;
 }

 @media only screen and (max-width:625px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     footer {
         margin: 0 -16px;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     .qr-code {
         position: static;
         display: flex;
         justify-content: center;
         margin-top: 15px;
     }

     :is(header, footer) p {
         font-size: 18px;
     }

     footer p {
         text-align: center;
     }

     h1 {
         font-size: 10vw;
     }
 }

 @media only screen and (max-width:576px) {
     .logo {
         position: static;
         display: flex;
         justify-content: center;
     }

     header p {
         width: auto;
         padding-top: 16px;
     }

     header p br {
         display: none
     }

     .br {
         display: inline;
     }
 }