* {
    padding: 0;
    margin: 0;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-image: url(../images/background.jpg);

}

#wrapper {
    width: 940px;
    background: beige;
    margin: 20px auto;
    overflow: hidden;
}

nav {
    height: 50px;
    line-height: 50px;
    background: peachpuff;
}

nav li {
    list-style-type: none;
    float: left;
    width: 25%;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: black;
    display: block;
    font-size: larger;
}

nav a:hover {
    background-color: lightcoral;
    color: white;
}

.home nav li:nth-child(1) a,
.sitemap nav li:nth-child(2) a,
.homepage nav li:nth-child(3) a,
.portfolio nav li:nth-child(4) a
{
    background: lightcoral;
    color: black;
}

main {
    padding: 10px;
    margin-top: 20px;
}

.row {
    height: 300px;
    margin-bottom: 20px;
}

.third {
    width: 300px;
    float: left;
    margin-right: 20px;
}

.third:last-of-type {
    margin-right: 0;
}

footer {
    height: 50px;
    line-height: 50px;
    background: peachpuff;
    clear: both;
    font-size: .9em;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer ul {
    margin-left: 30px;
}

footer li {
    list-style-type: none;
    float: left;
    margin-right: 30px;
}

footer li img {
    margin-top: 5px;
}

img {
    max-width: 100%;
    margin-bottom: 10px;
}

.center {
    margin: 20px auto;
    display: block;
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 8px;
    line-height: 1.2;
    color: rgb(1, 1, 51);
}

h3 {
    font-size: 1.5em;
    text-align: center;
}

p {
    margin-bottom: 20px;
    line-height: 1.4;
}

h3 + p {
    padding: 10px;
}