/*used to write notes in CSS*/
/*# is used with a non-standard color*/
body {
	background-color: #212121;
}

a {
	color: #e65100;
}

h1, h2, h3 {
	margin: 0;
	/*this removes extra space from around the heading*/
}

/* a # lets the rule target a specific item like an id e.g., #header */
#shell {
	background-color: #7986cb;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: #283593;
	color: white;
	text-align: center;
	padding: 10px 10px 10px 10px;
}

#content {
	padding: 10px 10px 10px 10px;
}

#nav {
	width: 180px;
	float: left;
}

#nav ul {
	padding: 10;
}

#nav .selected {
	font-weight: bold;
}  

#main {
	width: 570px;
	float: right;
}

#graphics {
	clear: both;
	background-color: #3f51b5;
	color: white;
	padding: 10px 10px 10px 10px;
}

#image {
	text-align: center;
}

#anime {
	text-align: center;
}

#footer {
	clear: both;
	padding: 10px 10px 10px 10px;
	background-color: #37474f;
	color: white;
	text-align: right;
}


