/*This is how you write notes in CSS*/
/*a # lets the rule target a specific item like an id e.g., #header */

body {
	background-color: #757575; 
	/*a # is used with a non-standard color*/
}

a {
	color: #e91e63
}

h1, h2, h3 {
	margin: 0;
	/*this removes extra space from the heading*/
}

#shell {
	background-color: #b3e5fc;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: #0d47al;
	color: black;
	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: #2916f3;
	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: #424242;
	color: white;
	text-align: left;
} 

	
	
	
	
	
	
	
	