/* style.css */
.author {
    color: purple;
}

a:link, a:visited {
    color: blue; /* Farbe für normale und besuchte Links */
    text-decoration: none; /* Entfernt die Unterstreichung */
}

a:hover {
    color: darkblue; /* Farbe für Links beim Hovern */
}

