html, body {
    height: 100%; /* Gesamte Höhe des Fensters abdecken */
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    background-color: #1e1e2f; /* Dunkler Hintergrund */
    color: #ffffff; /* Helle Schrift */
    font-family: Arial, sans-serif;
}

.active {
  background-color: #800020;
  color: white;
} 

.button i {
  width: 20px; /* Einheitliche Breite für die Icons */
  text-align: center; /* Zentrierung des Icons */
  margin-right: 10px; /* Abstand zwischen Icon und Text */
}

footer {
  text-align: center;
  /* font-size: 0.9rem; */
  color: white;
  background-color: #800020;
  width: 100%;
  margin-top: auto;
}

h1 {
  text-align: center;
}