/* main page styling */
body {
  background-color: #1e1e1e;
  color: #d0d0d0;
  font-family: 'Courier New', monospace;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

/* headers */
h1, h2 {
  color: #99aabb;
  text-transform: lowercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.4em;
  color: #ccddee;
  text-align: center;
}

.subtitle {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-bottom: 30px;
}

nav {
  text-align: center;
  margin-bottom: 30px;
}

nav a {
  color: #cc8888;
  margin: 0 12px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffaaaa;
}

ul {
  padding-left: 20px;
}

a {
  color: #88bbff;
}

a:hover {
  color: #ffffff;
}

footer {
  text-align: center;
  font-size: 0.8em;
  color: #777;
  margin-top: 40px;
}