 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #161616;
     font-family: 'Roboto', sans-serif;
     font-size: 15px;
     line-height: 22px;
     font-weight: 300;
 }

 #wrapper {
     max-width: 555px;
     padding: 25px 35px;
     margin: 16px auto;
     border: 1px solid #161616;
     background-color: #fff;
 }

 footer {
     display: flex;
     align-items: flex-start;
     padding-top: 25px;
     gap: 20px;
 }

 .left {
     width: 205px;
     padding-top: 10px;
 }

 .right :is(h3, p) {
     color: #bf9768;
 }

 .right p {
     font-size: 14px;
     line-height: 18px;
     font-weight: 400;
 }

 p {
     margin-top: 10px;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 h1 {
     font-size: 21px;
     line-height: 24px;
     color: #bf9768;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
     padding-left: 19px;
     margin-top: 20px;
 }

 h3 {
     font-weight: 700;
     font-size: 21px;
     line-height: 21px;
     padding-bottom: 10px;
 }

 ul {
     list-style: none
 }

 ul li {
     padding-left: 19px;
     margin-top: 6px;
 }

 li:before {
     content: "\25A0";
     color: #bf9768;
     float: left;
     font-size: 13px;
     text-indent: -19px;
     margin-top: -1px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(h1, h2, strong) {
     font-weight: 500;
 }

 a {
     color: #bf9768;
     text-decoration: none;
     white-space: nowrap;
 }

 @media only screen and (max-width:555px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     :is(p, ul) span {
         white-space: nowrap;
     }

     li br {
         display: none;
     }

     footer {
         justify-content: space-between;
     }
 }

 @media only screen and (max-width:474px) {
     footer {
         flex-direction: column;
         align-items: center;
         gap: 16px
     }

     .left {
         width: auto;
         padding-top: 0
     }

     footer :is(p, h3) {
         text-align: center !important;
     }
 }