/* General page styling */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* Style for all links */
a {
    color: blue;
    text-decoration: none;
    font-size: 18px;
}
body {
    background-color:lightpink;
    color: white;
}

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

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

/* Heading styling */
h1, h2 {
    color: #333;
}

/* This CSS file is shared style for all pages in the project */
