/*this is CSS notes*/
/* a # lets the rule target a specific item like an id e.g., #header */

body  {
	background-color: #3d5afe;
	/* a # is used with a non-standard color */
}

a  {
	color: #f44336;
}

h1, h2, h3  {
	margin: 0;
	/* this removes extra space */
}

#shell {
	background-color: #80cbc4;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: #ef5350;
	color: white;
	text-align: 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: #00b8d4;
	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: #ef5350;
	color: white;
	text-align: right;
}
