/* 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;
  
}
/* 1. Normal, unvisited link */
a:link {
  color: #FF0000; /* Example: Blue color (default) */
}

/* 2. Visited link */
a:visited {
  color: #FFC0CB; /* Example: Purple color (default) */
}

/* 3. Link when the user mouses over it */
a:hover {
  color: #0000FF; /* Example: Red color */
}

/* 4. Link at the moment it is clicked */
a:active {
  color: #FF4500; /* Example: Orange-red color */
}
