h1 {color:red;}
/* General body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  padding: 20px;
}

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

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

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