/* General Link Styling */
a {
    color: blue;
    text-decoration: none;
}

/* Visited Link Styling */
a:visited {
    color: purple;
}

/* Hover Link Styling */
a:hover {
    color: red;
    text-decoration: underline;
}

/* Basic Layout */
body {
    font-family: sans-serif;
    line-height: 1.6;
}
