body {
  font-family: sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

button {
  background-color: #007acc;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: #005c99;
}

#ausgabe {
  margin-top: 20px;
  font-size: 18px;
  font-style: italic;
  color: #333;
}
