 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Open Sans', sans-serif;
     font-size: 16px;
     line-height: 21px;
     font-weight: 300;
 }

 #wrapper {
     max-width: 555px;
     margin: 16px auto;
     border: 6px solid #d24a38;
     background-color: #fff;
     padding: 16px;
     position: relative;
 }

 header {
     position: relative;
 }

 header p {
     font-size: 17px;
     line-height: 24px;
 }

 .logo {
     position: absolute;
     top: 0;
     right: 18px;
 }

 article {
     padding: 10px 0;
 }

 .title {
     background: #d24a38;
     padding: 10px;
     color: #fff;
     margin-top: 10px;
     position: relative;
 }

 .title p {
     text-align: center !important;
     font-size: 19px;
     line-height: 25px;
     margin-top: 0;
 }

 .title:after {
     content: "\2022";
     background: url('icon.jpg') no-repeat;
     width: 25px;
     height: 26px;
     position: absolute;
     bottom: -26px;
     right: 50px;
 }

 footer {
     padding: 0 140px 0 0;
 }

 footer p small {
     font-size: 14px;
     font-weight: 600
 }

 .info {
     margin-top: 10px;
 }

 .info p {
     display: flex;
     gap: 10px;
     align-items: center;
     margin-top: 5px;
     font-weight: 600;
 }

 .qr-code {
     position: absolute;
     bottom: 18px;
     right: 14px;
 }

 p {
     margin-top: 15px;
     text-align: justify;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 strong {
     font-weight: 600
 }

 h1 {
     font-weight: 800;
     font-size: 47px;
     line-height: 1.1;
     text-align: center;
     font-style: italic;
     margin-top: 2px;
     padding-bottom: 10px;
 }

 h1 span {
     display: block;
     font-weight: 300;
     font-style: normal !important;
     font-size: 16px;
 }

 h2 {
     font-weight: 800;
     font-size: 26px;
     line-height: 1.1;
     color: #d24a38;
     font-style: italic;
     padding: 30px 0 0;
 }

 h2 span {
     display: inline-block;
     padding-left: 104px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #000;
     text-decoration: none;
 }

 @media only screen and (max-width: 555px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     p {
         text-align: left;
     }

     .logo {
         position: static;
         display: flex;
         justify-content: center;
         padding-bottom: 15px
     }

     header p,
     h2 {
         text-align: center;
     }

     h2 span {
         padding-left: 0
     }
 }

 @media only screen and (max-width: 480px) {
     .qr-code {
         position: static;
         display: flex;
         justify-content: center;
         margin-top: 30px;
     }

     .title:after {
         right: 50%;
     }

     footer {
         padding-right: 0
     }

     h1 {
         font-size: 30px
     }
 }