 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Roboto', Arial, sans-serif;
     font-size: 14px;
     line-height: 19px;
     font-weight: 300;
 }

 #wrapper {
     max-width: 810px;
     margin: 0px auto;
     background: #b9d5fd url('background.jpg') bottom no-repeat;
     padding: 64px;
 }

 .container {
     background: rgba(255, 255, 255, 0.75);
     padding: 20px;
 }

 header {
     display: flex;
     justify-content: center;
 }

 .title {
     background: #ffcc00;
     box-shadow: -0.5px 3px 15px #999;
     padding: 40px 84px 20px;
     margin: 50px -84px 0;
     position: relative;
 }

 .icon-right {
     position: absolute;
     top: -18px;
     right: 0px;
 }

 .icon-left {
     position: absolute;
     top: -20px;
     left: 0
 }

 article {
     padding: 20px 0;
 }

 footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 10px;
 }

 footer p {
     width: 87%;
 }

 p {
     margin-top: 15px;
     text-align: justify;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 38px;
     line-height: 1.2;
 }

 h1 small {
     font-size: 22px;
 }

 h1 span {
     display: block;
     font-size: 27px;
     font-weight: 400;
 }

 h2 {
     font-size: 25px;
     line-height: 1.1;
     position: absolute;
     width: 235px;
     background: #005da9;
     padding: 7px 12px;
     color: #fff;
     border: 3px solid #ddd;
     transform: scale(1) rotate(353deg) translateX(1px) skewX(1deg);
     box-shadow: -0.5px 3px 15px #999;
     top: -24px;
     left: 25px;
 }

 h3 {
     font-size: 15px;
     line-height: 21px;
     margin-top: 20px;
 }

 ul {
     list-style: none
 }

 ul li {
     padding-left: 17px;
 }

 li:before {
     content: "\2212";
     color: #000;
     float: left;
     font-size: 23px;
     text-indent: -17px;
 }

 a {
     color: #000;
     text-decoration: none;
     white-space: nowrap;
 }

 img {
     max-width: 100%;
     display: block;
 }

 @media only screen and (max-width:810px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     p {
         text-align: left;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }
 }

 @media only screen and (max-width:700px) {
     #wrapper {
         padding: 16px
     }

     .container {
         padding: 16px
     }

     .title {
         margin: 67px -16px 0;
         padding: 16px
     }

     :is(.icon-left, .icon-right) {
         display: none
     }

     h2 {
         top: -48px;
     }

     h1 {
         font-size: 28px;
     }
 }

 @media only screen and (max-width:475px) {
     h2 {
         transform: none;
         position: static;
     }

     h1 {
         text-align: center;
         margin-top: 20px
     }

     h1 :is(span, small) {
         font-size: 21px;
         display: block;
     }

     footer {
         flex-direction: column;
         align-items: center;
         gap: 16px
     }

     footer p {
         width: auto;
     }
 }

 @media only screen and (max-width:370px) {
     h1 {
         font-size: 23px;
     }
 }