 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #221c22;
     font-family: 'Hind', sans-serif;
     font-size: 15px;
     line-height: 20px;
 }

 #wrapper {
     max-width: 785px;
     margin: 16px auto;
     border: 1px solid #8ba626;
     background-color: #fff;
     padding: 16px 25px;
 }

 header {
     position: relative;
 }

 .logo {
     position: absolute;
     top: 0;
     right: 0
 }

 article {
     padding: 10px 0 0;
 }

 .float {
     position: relative;
 }

 .float figure {
     position: absolute;
     bottom: 6px;
     right: 0;
     width: 109px;
 }

 p {
     margin-top: 10px;
     text-align: justify;
     hyphens: auto;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 .title {
     width: 510px;
 }

 .title :is(h1, p) {
     text-align: center;
 }

 h1 {
     font-size: 30px;
     line-height: 1.1;
     color: #8ba626;
     margin-top: 15px;
 }

 h1 span {
     font-size: 23px;
 }

 h2 {
     font-size: 17px;
     line-height: 20px;
     margin-top: 10px;
 }

 h2+p {
     margin-top: 0;
 }

 ul {
     list-style: none
 }

 ul li {
     padding-left: 19px;
 }

 li:before {
     content: "\2022";
     color: #8ba626;
     float: left;
     font-size: 23px;
     text-indent: -19px;
     margin-top: 3px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #221c22;
     text-decoration: underline;
     font-weight: bold;
 }

 .font {
     font-size: 17px;
 }

 @media only screen and (max-width:785px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty;
         text-align: left;
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     .float {
         overflow: hidden;
     }

     .float figure {
         position: static;
         float: right;
         margin: 0 0 10px 10px;
     }

     .float p br {
         display: none
     }

     .title {
         width: 392px;
     }
 }

 @media only screen and (max-width:630px) {
     header p {
         text-align: center;
     }

     .logo {
         position: static;
         display: flex;
         justify-content: center;
         padding-bottom: 16px
     }

     .title {
         width: auto;
     }
 }