body {
  font-family: "Courier New", Courier, monospace;
  background-color: #000000;
  color: #00ff00; /* Classic green screen color */
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.container {
  background-color: #0a0a0a;
  border: 2px solid #00ff00;
  padding: 30px;
  max-width: 60%;
  width: 100%;
  box-shadow: 0 0 15px #00ff00;
  text-align: center; /* Center text within the container */
}
h1 {
  color: #75fbfd; /* Cyan for emphasis */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #00ff00;
  padding-bottom: 10px;
}
h2 {
  color: #75fbfd;
}
p {
  line-height: 1.6;
  font-size: 1.1em;
}
a {
  color: #ff0000; /* White for links */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
section {
  border-top: 1px solid #00ff00;
  text-align: left;
}
.thank-you {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #00ff00;
}
.thank-you p {
  font-size: 0.9em;
}
footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #00ff00;
  font-size: 0.8em;
  text-align: center;
  width: 100%;
}
code {
  color: #ffffff;
}
.ascii-art {
  font-size: 0.8em; /* Smaller font for ASCII art */
  white-space: pre; /* Preserve whitespace and line breaks */
  text-align: center; /* Center the ASCII art */
  margin-bottom: 20px;
  color: #00aa00; /* Slightly darker green for art */
}
