/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  background-color: #0a0a0a;
  color: #39ff14;
  font-family: 'Share Tech Mono', monospace;
  margin: 0;
  padding: 0;
  background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
  background-size: 20px 20px;
}

.container {
  max-width: 800px;
  margin: 3em auto;
  background-color: rgba(15, 15, 15, 0.9);
  padding: 2em;
  border: 2px solid #ff00ff;
  border-radius: 12px;
  box-shadow: 0 0 20px #ff00ff;
}

header h1 {
  text-align: center;
  font-size: 2.5em;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 2em 0;
  gap: 1.5em;
}

nav ul li a {
  text-decoration: none;
  color: #ff00ff;
  padding: 0.5em 1em;
  border: 1px solid #ff00ff;
  border-radius: 8px;
  background-color: transparent;
  transition: all 0.2s ease;
}

nav ul li a:hover {
  background-color: #ff00ff;
  color: #0a0a0a;
  box-shadow: 0 0 10px #ff00ff;
}

main {
  text-align: center;
  margin-top: 2em;
}

main h2 {
  font-size: 1.8em;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
}

footer {
  text-align: center;
  margin-top: 3em;
  font-size: 0.9em;
  color: #999;
}