 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #221c22;
     font-family: 'Open Sans', sans-serif;
     font-size: 16px;
     line-height: 22px;
 }

 #wrapper {
     max-width: 656px;
     margin: 16px auto;
     border: 1px solid #221c22;
     background-color: #fff;
     position: relative;
 }

 header {
     padding: 25px;
     background: #a80532;
     position: relative;
 }

 .position {
     position: absolute;
     top: 6px;
     right: 15px;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 10px;
     font-size: 14px;
     line-height: 18px;
 }

 .position p {
     text-align: center;
 }

 article {
     padding: 20px;
 }

 footer {
     padding: 14px;
     background: #a90332;
     color: #fff;
     position: absolute;
     bottom: 10px;
     right: 10px;
     width: 282px;
     border: 1px solid #000;
     padding: 10px;
 }

 p {
     margin-top: 10px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-weight: 400;
     font-size: 23px;
     line-height: 34px;
 }

 h2 {
     font-size: 59px;
     line-height: 1.2;
     font-family: 'Roboto Slab', serif;
     color: #fff;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #fff;
     text-decoration: none;
 }

 @media only screen and (max-width: 656px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     .position {
         position: static;
         align-items: center;
     }

     header {
         padding: 16px
     }

     h2 {
         text-align: center;
         padding-bottom: 5px;
         font-size: 45px;
     }

     article {
         padding: 16px
     }

     h1 br {
         display: none
     }

     footer {
         position: static;
         width: auto
     }

     p span,
     a {
         white-space: nowrap;
     }
 }