body {
  background: #000000;
  color: #00FF00;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 0;
  background-image: url('bg_tile.gif');
  background-repeat: repeat;
  cursor: url('cursor.cur'), auto;
}

.container {
  width: 760px;
  margin: 0 auto;
  padding: 20px;
  border: 3px ridge #00FF00;
  background: #111111;
}

h1 {
  text-align: center;
  font-size: 42px;
  text-shadow: 0 0 8px #00ff00, 0 0 12px #00ff00;
}

hr {
  border: 0;
  height: 2px;
  background: #00FF00;
}

marquee {
  font-size: 20px;
  margin: 10px 0;
}

.nav {
  text-align: center;
  margin: 20px 0;
}

.nav a {
  color: #00FF00;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

.nav a:hover {
  text-decoration: underline;
}

.content {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5em;
}

.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

.blink {
  animation: blinkAnim 0.9s steps(2, start) infinite;
  text-shadow: 0 0 8px #00ff00, 0 0 12px #00ff00;
}
@keyframes blinkAnim {
  to { visibility: hidden; }
}

.button90s {
  display: inline-block;
  padding: 8px 14px;
  background: #111;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-right: 3px solid #444;
  border-bottom: 3px solid #444;
  color: #00FF00;
  font-family: "Courier New";
  text-decoration: none;
}
.button90s:active {
  border-top: 3px solid #444;
  border-left: 3px solid #444;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}