/* Styling for all links */
a {
  color: blue;
  text-decoration: none;
}

/* Link hover effect */
a:hover {
  color: orange;
}

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

/* Body text and headings */
body {
  font-family: Arial, sans-serif;
  margin: 20px;
}

h1, h2 {
  color: darkblue;
}