 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #1f2937;
     font-family: 'Poppins', sans-serif;
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
 }

 #wrapper {
     max-width: 800px;
     margin: 16px auto;
     border: 1px solid #1f2937;
     background-color: #fff;
 }

 header p {
     font-weight: 500;
     font-size: 19px;
 }

 .logo {
     padding: 30px 60px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .title {
     background: url('background.jpg') right no-repeat;
     height: 249px;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 1rem;
 }

 article {
     padding: 30px 65px 0;
 }

 .button {
     margin-top: 30px;
     display: flex;
     justify-content: center;
 }

 .button a {
     background: #ea4c6f;
     color: #fff;
     border-radius: 5px;
     padding: 10px 20px;
     text-align: center;
     font-weight: 500;
 }

 .button a:hover {
     background: #ed6784;
 }

 footer {
     padding: 0 60px 50px;
 }

 p {
     margin-top: 20px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 27px;
     line-height: 1.5;
     color: #fff;
     font-weight: 500;
 }

 h1 span {
     font-weight: 300;
     font-size: 16px;
     padding-bottom: 10px;
     display: block;
     text-transform: uppercase;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
     margin-top: 20px;
 }

 ul {
     list-style: none;
     margin-top: 20px;
 }

 ul li {
     padding-left: 25px;
 }

 li:before {
     content: "\2022";
     color: #1f2937;
     float: left;
     font-size: 25px;
     text-indent: -25px;
 }

 a {
     color: #1f2937;
     text-decoration: none;
     white-space: nowrap;
 }

 img {
     max-width: 100%;
     display: block;
 }

 @media only screen and (max-width:800px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     :is(.logo, article, footer) {
         padding: 16px;
     }

     article {
         padding-bottom: 0 !important;
     }
 }

 @media only screen and (max-width:520px) {
     .logo {
         flex-direction: column;
         align-items: center;
         gap: 16px
     }

     .title {
         padding: 30px;
     }

     h1,
     .logo p {
         text-align: center;
     }

     h1 br {
         display: none;
     }
 }