body {
    background-color: #DCD7C9;
}

header {
    width: 100%;
    float: left;
    height: 45px;
    font-family: 'Bebas Neue', cursive;
    /* position: fixed; */
}

header div {
    height: 45px;
    width: 20%;
    float: left;
    background-color: #2C3639;
    box-sizing: border-box;
}

header div h1 {
    width: 60%;
    height: 45px;
    box-sizing: border-box;
    font-size: 35px;
    float: left;
    text-align: right;
    padding: 7px 0;
}

header div a {
    text-decoration: none;
    text-transform: uppercase;
    color: #DCD7C9;
}

header div a:hover {
    color: #fff9e8;
}

header div img {
    width: 40%;
    height: 45px;
    padding: 5px 0;
    box-sizing: border-box;
}

nav {
    box-sizing: border-box;
    height: 45px;
    width: 80%;
    float: right;
    background-color: #3D4D51;
    padding: 12.5px 0;
}

nav ul li {
    width: 25%;
    box-sizing: border-box;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
    float: left;
    text-align: center;
}

nav ul li a {
    color: #DCD7C9;
    text-decoration: none;
}

nav ul li a:hover {
    color: #fff9e8;
}

main {
    width: 100%;
    min-height: 500px;
}

footer {
    width: 100%;
    font-family: 'Bebas Neue', cursive;
    box-sizing: border-box;
    padding: 0 7%;
    background-color: #3D4D51;
    color: #DCD7C9;
}

footer div {
    width: 25%;
    box-sizing: border-box;
    float: left;
    padding: 5%;
}

footer div h3 {
    font-size: 20px;
    text-transform: capitalize;
    padding-bottom: 10px;
}

footer div h4 {
    font-size: 15px;
    text-transform: lowercase;
    padding-bottom: 5px;
}

#rights {
    width: 100%;
    display: inline-block;
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #2C3639;
    color: #DCD7C9;
}

footer a {
    text-decoration: none;
    color: #DCD7C9;
}