 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     margin: 10px 0;
     color: #000;
     font-family: 'Roboto Condensed', sans-serif;
     font-size: 17px;
     line-height: 18px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #000;
     text-decoration: none;
 }

 #wrapper {
     max-width: 520px;
     margin: 0px auto;
     border: 5px solid #f9a842;
     background-color: #fff;
     padding: 15px;
     position: relative;
 }

 header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 header p {
     width: 51%;
 }

 article {
     padding: 15px 0 0;
 }

 article p:last-of-type {
     padding-right: 136px;
     font-size: 93%;
 }

 footer {
     position: absolute;
     bottom: 15px;
     right: 15px;
 }

 p {
     margin-top: 10px;
     text-align: justify;
     hyphens: auto;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 30px;
     line-height: 1.1;
     color: #f9a842;
     margin-top: 10px;
 }

 h1 span {
     color: #000;
     font-size: 21px;
     margin-top: 5px;
     display: block;
 }

 @media only screen and (max-width:520px) {
     #wrapper {
         border: none
     }

     p {
         text-align: left;
     }

     header {
         flex-direction: column;
         align-items: center;
     }

     header p {
         width: auto;
         padding-top: 15px
     }

     :is(a, p span) {
         white-space: nowrap;
     }
 }

 @media only screen and (max-width:444px) {
     article p:last-of-type {
         padding-right: 0
     }

     footer {
         position: static;
         display: flex;
         justify-content: center;
         margin-top: 20px
     }
     h1{text-align: center;}
 }