
body {
  background-color: #000000;
  background-image: url('background_stars.gif');
  background-repeat: repeat; /* Or repeat-x, repeat-y, no-repeat */
}

#centeredBody {
	width: 1280px;
	margin: 0 auto;
	margin-top: 36px;
}

h1, p, li {
	color: white;
	font-family: 'Share Tech Mono', monospace;	
}

h1, p {
  text-shadow: 2px 2px black;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #000000;
}

li {
  float: left;
  border-radius: 8px;
  border: 2px solid #222222;
  background-color: #2C2C2C;
  margin-right: 8px;
  cursor: pointer;
}

a:visited { 
  color: white;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #222222;
}