/* Standard-Stil für die Links */
.nav-link {
    color: rgb(61, 79, 157);
    font-size: 1.2rem;
    text-decoration: none; /* Entfernt Unterstriche */
    transition: color 0.3s ease; /* Sanfter Farbwechsel */
}

/* Hover-Effekt */
.nav-hover:hover {
    color: black; /* Schriftfarbe beim Hovern wird Schwarz */
}
