@charset "UTF-8";
/* CSS Document */

* {margin: 0; padding: 0;} /*simple reset*/

body{
    font-family: Arial, sans-serif;
    color: #dfdfdf;
    background-color: #faf1e1;
    justify-content: center;

}

section {
    width: 960px;
    margin: 0;
    background-color: #3B2E24;
    display: flex;
    justify-content: left;
   
}

nav {
    justify-content: flex-start;
    width: 35% ;
    
}

article {
    width: 65%;
    padding: 20px;
}

footer {
    clear: both;
    background-color: #6A2E18;
    width: auto;
    padding: 25px;
    font-size: 13px;
    color: #e7dacc;
    line-height: 16px;
}

h2 {
    font-size: 32px;
    color: #d06038;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

p {margin-bottom: 16px;}

nav ul {
    list-style-type: none;
    margin-bottom: 40px;
   
}

nav ul li a {
    display: block;
    background-color: #1e1915;
    color: #e7dacc;
    font-weight: bold;
    font-size: 20px;
    line-height: 60px;
    height: 60px;
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 25px;
    border-bottom: 5px solid #ead6be;
}

nav ul li a:hover {
    background: #d06038;
}

header img {
    display: flex;
    
}


