/* --- Font & Base Setup --- */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  background-color: #0a0a0a;
  color: #e6e6e6;
  font-family: 'VT323', monospace;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-image: url('https://www.transparenttextures.com/patterns/dark-mosaic.png'); /* optional texture */
}

/* --- Container --- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* --- Headers --- */
h1, h2, h3 {
  color: #7FFF00;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #7FFF00;
  padding-bottom: 5px;
}

a {
  color: #ffff00;
  text-decoration: none; /* removes the underline, optional */
}

a:hover {
  color: #ffd700; /* pretty gold-yellow on hover */
  text-decoration: underline; /* optional hover style */
}
