﻿ * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     min-height: 100%;
 }

 img {
     max-width: 100%;
     height: auto;
     border: none;
 }

 body {
     color: #000;
 }

 #wrapper {
     position: relative;
     max-width: 910px;
     margin: 0.625rem auto;
     border: 1px solid #000;
     padding: 45px;
     overflow: hidden;
     text-align: left;
     color: #B5B4A3;
     font-size: 14px;
     line-height: 20px;
     font-family: 'Roboto Slab', serif;
     background: #2A4C31 url(bg.jpg) no-repeat 0px 341px;
 }

 hr {
     border: none;
     border-bottom: 1px solid #B5B4A3;
     margin: 25px 0;
 }

 aside {
     width: 48%;
 }

 .flexbox {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
 }

 .logo {
     text-align: center;
 }

 h1 span {
     color: #B5B4A3;
 }

 h4 {
     font-size: 18px;
     line-height: 22px;
     font-weight: normal;
     margin: 10px 0 40px;
 }

 h1 {
     padding: 3rem 0 8rem;
     font-size: 32px;
     line-height: 36px;
     text-align: left;
     color: #EF7C00;
     font-weight: normal;
 }

 h2 {
     font-size: 18px;
     line-height: 24px;
     padding: 3rem 0 0;
     font-weight: normal;
 }

 h3 {
     font-size: 15px;
     line-height: 19px;
 }

 p {
     margin: 0 0 1rem 0;
     padding: 0;
 }

 footer {
     display: flex;
     justify-content: space-between;
     position: relative;
     font-size: 12px;
     line-height: 16px;
     gap: 10px;
     flex-wrap: wrap;
 }

 a {
     color: #B5B4A3;
     text-decoration: none;
 }

 a:hover {
     text-decoration: underline;
 }

 ul {
     margin: 0 0 20px;
     list-style: none;
 }

 ul li {
     padding-left: 14px;
     margin-top: 5px;
 }

 ul li:before {
     content: "\2022";
     color: #B5B4A3;
     float: left;
     margin-left: 0;
     font-size: 17px;
     text-indent: -14px;
 }

 @media all and (max-width: 910px) {
     #wrapper {
         padding: 3%;
         border: none;
         background-size: contain;
         margin: 0;
     }

     p {
         margin: 0 0 0.625rem;
         text-align: left;
     }

     aside {
         width: 100%;
     }

     br {
         display: none;
     }

     footer br {
         display: inline;
     }

     h1 {
         padding: 3rem 0
     }
 }

 @media all and (max-width: 740px) {
     footer {
         justify-content: center;
         gap: 20px
     }

     footer p {
         text-align: center !important;
     }
 }

 @media all and (max-width: 740px) {
     footer {
         flex-direction: column;
         align-items: center;
     }
 }