/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #66CCFF;
    margin: 20px;
}

/* Headings */
h1 {
    color: #333;
}

/* Default link */
a:link {
    color: blue;
    text-decoration: none;
}

/* Visited link */
a:visited {
    color: purple;
}

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

/* Active (optional but fine) */
a:active {
    color: green;
}