nav ul {
    list-style-type: none;
    padding: 0;
    display: flex; /* Flexbox für die Navigation */
    flex-wrap: wrap; /* Ermöglicht den Textumbruch */
    justify-content: center; /* Zentriert die Listenelemente */
}

nav ul li {
    display: inline;
    margin: 0 20px;
    font-weight: 700;
    text-align: center;
  
    background-color: rgba(0, 0, 0, 0.9); /* Intensiverer Kontrast */
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.1em;
    
}

nav ul li a:hover {
    text-decoration: underline;
    color: #ff0000; /* Leuchtendes Orange für visuelles Feedback */
}

nav ul li a:focus {
    outline: 2px solid #ff6600;
}