/* Hintergrundfarbe und Schrift */
body {
  background-color: #f0f0f0; /* hellgrau */
  font-family: Arial, sans-serif;
  color: #333333; /* dunkles Grau */
  margin: 20px;
}

/* Überschriften */
h1, h2 {
  color: #6a0dad; /* nice Lila */
}

/* Links */
a {
  color: #6a0dad;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
button {
  background-color: #6a0dad;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #520a9e; /* dunkleres Lila */
}

/* Container für Inhalt */
.container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}