 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #fff;
     font-family: 'Hind', sans-serif;
     font-size: 16px;
     line-height: 18px;
 }

 #wrapper {
     max-width: 750px;
     margin: 16px auto;
     border: 1px solid #000;
     background-color: #135391;
     position: relative;
 }

 article {
     padding: 20px;
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 .left {
     width: 365px;
 }

 .right {
     width: 305px;
 }

 footer {
     width: 310px;
     position: absolute;
     bottom: 20px;
     right: 20px;
 }

 figure {
     margin-top: 10px;
 }

 p {
     margin-top: 10px;
     text-align: justify;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 22px;
     line-height: 23px;
     padding-left: 15px;
     font-weight: 600;
     margin-top: 10px;
 }

 h1:before {
     content: "\2022";
     color: #fff;
     float: left;
     font-size: 23px;
     text-indent: -15px;
     margin-top: 2px;
 }

 h1 span {
     font-size: 16px;
 }

 h1 span:nth-of-type(2) {
     display: block;
 }

 h2 {
     font-size: 20px;
     line-height: 24px;
     padding: 20px 0;
     font-weight: 600;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #fff;
     text-decoration: none;
 }

 @media only screen and (max-width:750px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     p {
         text-align: left;
     }

     article {
         display: block;
         padding: 16px;
     }

     :is(.left, .right) {
         width: auto !important
     }

     figure {
         display: flex;
         justify-content: center;
         padding-bottom: 20px;
     }

     footer {
         position: static;
         display: flex;
         flex-direction: column;
         align-items: center;
         width: auto;
         padding: 10px 16px;
     }

     :is(.right, footer) p {
         text-align: center !important;
     }

     .title {
         display: flex;
         flex-direction: column;
         align-items: center;
     }
 }