body{
   background: yellow;
}
h1 {
   color: blue;
}
#header {
    position: absolute;
	border: thick solid purple;
	left: 250px;
	top: 30px;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 10px;
}
#about{
    position: absolute;
	left: 10px;
	top: 200px;
}

#menu {
	position: absolute;
	left: 10px;
	top: 320px;
}

#quotes{
    position: absolute;
	left: 10px;
	top: 550px;	
}

#footer{
    position: absolute;
	left: 10px;
	top: 750px;	
	font-style: italic;
	font-size: smaller;
}

h2:first-letter{
	color:red;
}

li:first-child{
	display:none;
}

a:link { 
	font-weight: bold; 
	text-decoration: none; 
	color: blue;
}
a:visited { 
	font-weight: bold; 
	text-decoration: none; 
	color: green;
}
a:hover, a:active { 
	text-decoration: underline; 
	color: red;
}

table{
	border: medium dashed green;
}

