/*This is my CSS File*/
/* 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: #76ff03;
}

h1, h2, h3 {
	margin: 0;
	/* this removes extra space from around heading*/
}

#shell {
	background-color: #1976d2;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: #0d47a1;
	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: #0288d1;
	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: #212121;
	color: white;
	text-align: right;
}