html, body {
  margin: 0;
  padding: 0;
  height: 100dvh;
  background-color: #121212;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}
h1 {
	font-size: 2rem;
	color: white;
	text-align: center;
}
/* Container unten mit Abstand */
.button-container {
  padding: 20px 20px 30px; /* Abstand unten */
}

/* Buttons im App-Stil */
.landing-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  border-radius: 16px;
  height: 40dvh;
  width: 100%;
  margin-bottom: 20px; /* Abstand zwischen Buttons */
}

/* Letzten Button vom unteren Rand trennen */
.landing-button:last-child {
  margin-bottom: 0;
}

.landing-button:hover {
  background-color: #444;
}

/* Optional: größere Schrift auf Desktop */
@media (min-width: 600px) {
  .landing-button {
    font-size: 2.2rem;
  }
}
