/* Styling Changes to change the font */
body {
    font-family: Courier New, sans-serif;
    background-color: #f0f0f0;
    margin: 20px;
}

h1 {
    color: #333;
}

/* Default link color */
a:link {
    color: #0000EE; /* Blue */
    text-decoration: none; /* Removes the underline */
}

/* Link changes color after being visited */
a:visited {
    color: #551A8B; /* Purple */
}

/* Link changes color when mouse hovers */
a:hover {
    color: #FF0000; /* Red */
    text-decoration: underline; 
    font-weight: bold;
}