body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    font-family: Arial, sans-serif;
  }

  #websitetitel {
    position: absolute;
    top: 15px;
    right: 30px;
    margin: 0;
    font-size: 24px;
    color: white;
  }

  /* Menü-Container */
  .menu {
    text-align: left; /* Zentriert den Inhalt */
    padding: 20px;
    background-color: #2b7eb5; /* Dunkles Blau-Grau für Menü-Hintergrund */
  }

  .menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-right: 15px;
    font-weight: bold;
  }

  .dropdown {
    margin-top: 30px;
    text-align: center;
    width: 230px; /* GENAU gleiche Breite wie der Button */
    margin-left: auto;
    margin-right: auto; /* Zentriert das Dropdown-Container */
    position: relative; 
  }

  /* Button, den man anklickt */
  .dropbtn {
    background-color: #2b7eb5;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: 230px;
    margin-top: 20px;
  }

  /* Das versteckte Dropdown-Menü */
  .dropdown-content {
    display: none;
    position: absolute;
    left: 50%; /* Mitte des Elternteils */
    transform: translateX(-50%); /* Zurück um die Hälfte der eigenen Breite */
    background-color: #f1f1f1;
    min-width: 230px;
    max-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Einzelne Einträge im Dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /* Hover-Effekt für die Links */
  .dropdown-content a:hover {
    background-color: #ddd;
  }

  /* Anzeigen, wenn man über den Button fährt */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Optional: Button beim Hover leicht verändern */
  .dropdown:hover .dropbtn {
    background-color: #2980b9;
  }