 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #003d4a;
     font-family: 'Source Sans Pro', sans-serif;
     font-size: 16px;
     line-height: 22px;
 }

 #wrapper {
     max-width: 877px;
     height: 1219px;
     margin: 16px auto;
     background: url(background.jpg) no-repeat;
     padding: 0 0 25px 25px;
 }

 .container {
     padding: 25px 155px 25px 40px;
     position: relative;
 }

 .logo {
     position: absolute;
     top: 30px;
     right: 70px
 }

 article {
     padding: 16px 0;
 }

 footer {
     padding: 0px;
 }

 p {
     margin-top: 16px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 40px;
     line-height: 1.2;
     padding-bottom: 24px;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
     margin-top: 16px;
 }

 ul {
     list-style: none;
     margin-left: 25px;
 }

 ul li {
     padding-left: 27px;
 }

 li:before {
     content: "\2022";
     color: #003d4a;
     float: left;
     font-size: 23px;
     text-indent: -27px;
 }

 a {
     color: #003d4a;
     text-decoration: none;
     white-space: nowrap;
 }

 img {
     max-width: 100%;
     display: block;
 }

 @media only screen and (max-width:877px) {
     #wrapper {
         border: none;
         margin: 0;
         background: #fef5ec;
         height: auto;
         padding: 0;
     }

     .container {
         padding: 16px
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     h1 {
         font-size: 30px;
         padding-bottom: 50px;
     }
 }

 @media only screen and (max-width:595px) {
     .logo {
         position: static;
         display: flex;
         justify-content: center;
     }

     h1 {
         text-align: center;
         padding: 20px 0 0
     }

     h1 br {
         display: none
     }

     h1+p {
         text-align: center;
     }
 }

 @media only screen and (max-width:480px) {
     ul {
         margin-left: 0
     }
 }