@charset "utf-8";

html {
	background: black;
	color: white;
}

h1, h2 {
	text-align: center;
	color: #FF9933;
	text-decoration: underline;
	letter-spacing: 15px;
}

h1 {
	text-decoration: overline;
}

h1 + h2 {
	margin-top: 1.5em;
}

a:link, a:visited {
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	color: #00CCFF;
}

a:hover { 
	background-color: #00CCFF;
	color: white;
}

ul {
	font-weight: bold;
	list-style: square;
	margin: 0;
	padding: 0;
}

li:hover {
	background: white;
	color: black;
}

img {
	display: block;
	margin: 0 auto;
	border: 6px double #FF9933;
	padding: 10px;
	background: white;
}

p:first-letter {
	color: #33CCFF;
	font-size: 200%;
}

p, ul {
	text-align: center;
}