body {
  background-color: black;
  color: lavender;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  margin: 0;
}

marquee {
  color: violet;
  font-size: 24px;
  font-weight: bold;
  background-color: purple;
  padding: 0;
  margin: 0;
  border: none;
  display: block;
  font-family: "Courier New", Courier, monospace;
}

.content {
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  background-color: darkmagenta;
  color: white;
  font-weight: bold;
  border: 2px solid violet;
  cursor: pointer;
}

.button:hover {
  background-color: violet;
  color: black;
}

/* New styles for the old-themed navbar */
nav {
  margin: 10px 0; /* Small margin to space it below the marquee */
  font-size: 18px; /* Slightly larger for readability, but not too modern */
  font-weight: bold;
}

nav a {
  color: lavender;
  text-decoration: none; /* No underline by default for a clean old look */
  margin: 0 10px; /* Space between links */
}

nav a:hover {
  color: violet; /* Matches your marquee and button hover colors */
  text-decoration: underline; /* Adds a simple underline on hover for interactivity */
}
