 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #00080b;
     font-family: 'PT Sans', sans-serif;
     font-size: 16px;
     line-height: 22px;
 }

 #wrapper {
     max-width: 522px;
     margin: 16px auto;
     border: 1px solid #00080b;
     background-color: #e1e2e2;
     position: relative;
 }

 header {
     position: relative;
 }

 article {
     padding: 25px;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 article p {
     width: 220px;
 }

 footer {
     position: absolute;
     bottom: 25px;
     right: 25px;
 }

 h1 {
     font-weight: bold;
     font-size: 21px;
     line-height: 24px;
 }

 h2 {
     font-size: 28px;
     line-height: 28px;
     position: absolute;
     top: 119px;
     right: 17px;
     text-align: right;
     color: transparent;
 }

 h2 span {
     display: block;
     font-weight: normal;
     margin-top: 21px;
     font-size: 21px;
     line-height: 20px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #00080b;
     text-decoration: none;
 }

 @media only screen and (max-width:522px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     h1 {
         display: none;
     }

     article p {
         width: 49%;
     }
 }

 @media only screen and (max-width:488px) {
     article {
         padding: 16px;
         flex-direction: column;
         gap: 16px;
     }

     article p {
         width: auto;
     }

     footer {
         position: static;
         display: flex;
         justify-content: center;
         padding: 0 16px 16px;
     }
 }