body {
  background-color: #0e0e0e;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.logo {
  width: 500px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  color: #00ff6a;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px #00ff6a;
}

h2 {
  font-size: 1.5rem;
  color: #ffffffcc;
  margin-bottom: 2rem;
}

a.button {
  display: inline-block;
  padding: 12px 30px;
  margin: 25px;
  background-color: #00ff6a;
  color: #0e0e0e;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #00ff6a;
}

a.button:hover {
  background-color: #00cc55;
  box-shadow: 0 0 20px #00ff6a;
  transform: scale(1.05);
}

footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}
