/* styles.css */
body {
  background-color: #000000;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
  margin: 0;
}

header, section, footer {
  max-width: 800px;
  margin: auto;
}

header h1 {
  color: #00FF00;
  font-size: 24px;
  border-bottom: 1px solid #00FF00;
  padding-bottom: 5px;
}

nav a {
  color: #00FF00;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

section p {
  white-space: pre-line;
}

footer {
  border-top: 1px solid #00FF00;
  padding-top: 10px;
  margin-top: 40px;
  font-size: 14px;
}

a {
  color: #00FF00;
}

a:visited {
  color: #00CC00;
}
