 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Open Sans', sans-serif;
     font-size: 13px;
     line-height: 19px;
     font-weight: 500;
 }

 #wrapper {
     max-width: 740px;
     margin: 16px auto;
     text-align: left;
     border: 1px solid #000;
     background-color: #fff;
     padding: 30px 50px;
 }

 .logo {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     padding-bottom: 20px;
 }

 .logo p {
     color: #0274b9;
     font-weight: 400
 }

 article {
     padding: 20px 0;
 }

 .center {
     padding-bottom: 16px;
 }

 .center :is(p, h1) {
     text-align: center;
 }

 footer {
     padding: 0;
 }

 p {
     margin-top: 20px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     color: #0274b9;
     font-size: 19px;
     line-height: 28px;
     margin: 15px 0 0;
     font-weight: 600;
 }

 h2 {
     font-size: 14px;
     line-height: 24px;
     padding-top: 20px;
 }

 ul {
     list-style: none
 }

 h2+p {
     margin-top: 0;
 }

 ul li {
     padding-left: 25px;
     margin-top: 5px;
 }

 li:before {
     content: "\2022";
     color: #000;
     float: left;
     font-size: 20px;
     text-indent: -25px;
     margin-top: 1px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     text-decoration: underline;
     color: #0274b9
 }

 @media only screen and (max-width: 740px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }
 }

 @media only screen and (max-width: 480px) {
     .logo {
         flex-direction: column-reverse;
         gap: 16px;
         align-items: center;
     }

     p span {
         white-space: nowrap;
     }

     h1 br {
         display: none
     }
 }