nav{
	height: 55px;
	background-color: gray; /*tan*/
}
nav ul{
	text-align: left;
	display: inline;
	padding: 15px 4px;
	list-style: none;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
nav ul li{
	display: inline-block; /*moves everything horizontal*/
	margin-right: -4px;
	position: relative;
	padding: 15px 20px; /*spreads stuff out*/
	background: #fff;  /*gives a white background*/
	transition: all 0.2s; /*doesn't do anything until hover*/
}
nav li a{
	text-decoration: none;
	color: black;
	cursor: pointer; /*grab, wait, crosshair, pointer*/
}
nav ul li:hover{
	background: gray;
	color: white;
}
nav ul li a:hoverj{
	color: white;
}
nav ul li ul{
	padding: 0; /*tightens it up*/
	position: absolute; /*stacks*/
	top: 48px; /*moves it down and */
	left: 0; /*moves it under history*/
	box-shado: none;
	display: none; /*makes the list disappear*/
	opacity: 0;
	visibility: hidden; /*no longer sense the hyperlinks*/
	transition: opacity 0.2s;
}
nav ul li ul li{
	background: gray;
	display: block;
	color: black;
}
nav ul li ul li:hover{
	background: #666;
}
nav ul li:hover ul{
	display: block;
	opacity: 1;
	visibility: visible;
}
body {
	background-image: url("http://www.derektalisman.com/space_bg.gif");
}
.text {
	color: white;
}
.text h1{
	color: lightblue;
}