* { margin: 0; padding: 0; }/*Simple Reset*/

body {
    font-family: arial, sans-serif;
    font-size: 16px;
}

section {
    width: 1020px;
    margin: auto;
    background-color: #d9eaf8;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

nav {
    width: 320px;
}

header img {
    display: block;
}

nav ul {
    list-style-type: none;
    margin-bottom: 60px;
}

nav ul li a {
    
    display: block;
    
    background-color: #5f676d;
    color: #e7dacc;
    
    font-weight: bold;
    font-size: 18px;
    
    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: black;
}

h2 {
    font-size: 18px;
    color: #5c1b06;
    margin-bottom: 16px;
    margin-top: 25px
}

p {
    margin-bottom: 20px;
}

article {
    width: 650px;
    padding: 20px;
}

footer {
    background-color: #5c1b06;
    padding: 25px;
    color: white;
}

header, footer {
    flex: 100%;
}