/* General dark theme */
body {
  margin: 0;
  font-family: system-ui, Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container for content */
.container {
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

/* Headline */
h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #00ffae;
}

/* Subtitle */
p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #aaaaaa;
}

/* Button style */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  font-size: 1rem;
  color: #121212;
  background-color: #00ffae;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn:hover {
  background-color: #00d08b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 255, 174, 0.3);
}

/* Links container */
.links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
