/*This is how you make 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: #ffeb3b;
}

h1, h2, h3 {
	margin: 0;
	/* this removes extra space from around the heading */
}

#shell {
	background-color: #1976d2;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: #2196f3;
	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: #00838f;
	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: #2962ff;
	color: white;
	text-align: right;
}































































































