body {
	background-color: rebeccapurple;
	font-family: Caveat;
	font-size: 14mpx;
}


.container {
	width: 900px;
	height: auto;
	background: forestgreen;
	margin: 30px auto;
}

.header {
	height: 300px;
	width: 900px;
	background-color: saddlebrown;
}
.navigation {
	background-color: seashell;
	width: 900px;
	height: 45px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.footer {
	height: 30px;
	width: 900px;
	text-align: center;
	background: saddlebrown;
}
.content {
	background-color: lemonchiffon;
}

body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}
.navigation {
	background-color: #333;
	overflow: hidden;
}
.navigation p {
	margin: 0;
}
.navigation a {
	display: block;
	color: white;
	text-align: center;
	padding: 14px 20px;
	text-decoration: none;
	float: left;
}
.navigation a:hover {
	background-color: #ddd;
	color: black;
}