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;
}

 /* ### Top-Nav ### */
.topnav {
  /* overflow: auto; */
  background-color: #2a2a40;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav i {
  width: 20px; /* Einheitliche Breite für die Icons */
  text-align: center; /* Zentrierung des Icons */
  margin-right: 10px; /* Abstand zwischen Icon und Text */
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.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 */
}