/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: Verdana;
  
  /* Default link color */
a {
  color: #80b3ff; /* light blue */
  text-decoration: none; /* removes underline (optional) */
}

/* Hovered link */
a:hover {
  color: #ffd580; /* soft yellow */
  text-decoration: underline; /* adds underline on hover (optional) */
}

/* Visited (clicked) link */
a:visited {
  color: #c285ff; /* soft purple for visited links */
}
}