@import url(http://fonts.googleapis.com/css?family=Oswald:400,300,700);

* {
    font-family: Oswald;
    font-weight: 400;
}

body {
	margin: 0;
}

a {
    text-decoration: none;
}

#logo {
    width: 60px;
}

header {
    background-color: lightgray;
}

header nav {
    float: right;
    margin-top: 29px;
}

header nav ul {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

header nav ul li {
    background-color: black;
    padding: 10px;
    float: right;
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    font-weight: 700;
}

.banner {
    height: 400px;
    background-image: url('img/banner.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.content {
    width: 960px;
    margin: auto;
    padding: 20px;
}

main .content {
    background-color: whitesmoke;
    overflow: hidden;
    padding-bottom: 0;
}

main .content:last-child {
    padding-bottom: 20px;
}

main .content article {
    background-color: white;
    float: left;
    height: 200px;
    margin-right: 2%;
    width: 32%;
}

main .content article:last-child {
    margin-right: 0;
}

main .content article > div {
    padding: 10px;
    font-weight: 300;
}

footer {
    background-color: gray;
    height: 79px;
    padding-top: 21px;
}
footer .content {
    text-align: center;
    color: white;
}
footer .content a {
    color: white;
}