@charset "utf-8";

:root {
    font-size: 16px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #747474;
    font-family: "Arial", sans-serif;
    font-size: .875rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem 1.25rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

h1 , h4 {
    color:#b99865;
}

h1 {
    font-size: 1.75rem;
    padding:0 20px
}

h4 {
    margin-bottom: .937rem
}

header {}

article {
    padding:20px 20px 0;
    display: flex;
    justify-content: space-between;
}

section {
    width:65%
}

aside {
    width:33%
}

.margin {
    margin-bottom: 2.5rem
}

aside h4 {
    color:inherit;
}

.box {
    border:1px solid #b99865;
    padding:.937rem 10px;
    margin:30px 0;
}

.social i {
      background-color: #b99865;
    font-size: 12px;
    margin-right: 9.8px;
    height: 23.8px;
    width: 23.8px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    padding-top:5px;
    color:#fff;
}

.icons {
display: flex;
column-gap: 20px;
font-size: 1rem;
padding:0 .937rem 1.25rem;
color: #b99865;}



footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding:20px;
    column-gap: 20px
}

.button {
    background:#b99865;
    padding:15px 25px;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    display: inline-block;
    font-weight: bold;
    color:#fff;
    border-radius: .125rem
}

.button:hover , .icons i:hover {
    opacity:0.7;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }
    
    article {
        display: block;
        padding:0;
    }
    
    .button {
        margin:0
    }
    
    h1 {
        margin:10px 0;
        padding:0;
        line-height: 1.2;
        font-size: 1.5rem
    }
    
    aside img {
        display: block;
        margin: 0 auto;
    }
    
    footer {
        padding: 0;
        display: block;
        text-align: center;
    }
    
    
    ul {
margin-left: .312rem}
    
    aside , section {
        width:auto;
    }
    
       p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }
}

