/* Remove underline from links */
a {
    text-decoration: none;
}

/* Preserve underline on hover for better user experience */
a:hover {
    text-decoration: underline;
}