 @font-face {
     font-display: swap;
     font-family: 'Noto Sans';
     font-style: normal;
     font-weight: 300;
     src: url('../fonts/noto-sans-v42-latin-300.eot');
     src: url('../fonts/noto-sans-v42-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-300.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-300.woff') format('woff'), url('../fonts/noto-sans-v42-latin-300.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-300.svg#NotoSans') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Noto Sans';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/noto-sans-v42-latin-regular.eot');
     src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Noto Sans';
     font-style: normal;
     font-weight: 500;
     src: url('../fonts/noto-sans-v42-latin-500.eot');
     src: url('../fonts/noto-sans-v42-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-500.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-500.woff') format('woff'), url('../fonts/noto-sans-v42-latin-500.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-500.svg#NotoSans') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Noto Sans';
     font-style: normal;
     font-weight: 600;
     src: url('../fonts/noto-sans-v42-latin-600.eot');
     src: url('../fonts/noto-sans-v42-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-600.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-600.woff') format('woff'), url('../fonts/noto-sans-v42-latin-600.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-600.svg#NotoSans') format('svg');
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Noto Sans', Arial, sans-serif;
     font-size: 17px;
     line-height: 23px;
     font-weight: 300;
 }

 #wrapper {
     max-width: 595px;
     margin: 1rem auto;
     border: 1px solid #000;
     background-color: #fff;
     padding: 25px;
 }

 header p {
     font-size: 19px;
     line-height: 27px;
 }

 footer {
     padding: 40px 0 0;
     position: relative;
 }

 footer p {
     font-size: 15px;
     line-height: 23px;
 }

 .qr-code {
     position: absolute;
     top: 40px;
     right: 0
 }

 figure {
     margin-top: 16px;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 p:not(:first-of-type) {
     margin-top: 10px;
 }

 h1 {
     font-size: 22px;
     line-height: 29px;
     margin: 16px 0;
 }

 h2 {
     font-size: 22px;
     line-height: 31px;
     color: #de0b13;
     text-decoration: underline;
     padding-top: 15px;
 }

 h3 {
     position: absolute;
     top: 0;
     right: 134px;
     color: #de0b13;
     font-weight: 400;
     transform: scale(1) rotate(350deg) translateX(1px) skewX(1deg);
     text-align: center;
     font-size: 24px;
     line-height: 38px;
 }

 :is(h2, h1, header p) {
     text-align: center;
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(h1, h2, strong) {
     font-weight: 500;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
     white-space: nowrap;
 }

 @media only screen and (max-width:595px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     p {
         hyphens: auto;
         text-wrap: pretty
     }

     p span {
         white-space: nowrap;
     }

     article br {
         display: none;
     }

     h3 {
         font-size: 18px;
         line-height: 1.3
     }
 }

 @media only screen and (max-width:415px) {
     h3 {
         position: static;
         font-size: 24px;
     }

     footer {
         padding-top: 16px
     }

     .qr-code {
         position: static;
         display: flex;
         justify-content: center;
         margin-top: 16px;
     }

     figure {
         flex-direction: column;
         align-items: center;
         gap: 16px;
     }

     p {
         text-align: center;
     }

     h3 {
         padding-bottom: 15px
     }
 }