/* 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: Purple;
  color: White;
  font-family: Century;
}
a:link {
  color: green; /* Unvisited link color */
  text-decoration: none; /* Removes the default underline */
}

a:visited {
  color: Grey; /* Visited link color */
  text-decoration: none;
}

a:hover {
  color: Yellow; /* Color when mouse is over link */
  text-decoration: underline; /* Adds an underline on hover */
}

a:active {
  color: White; /* Color the moment link is clicked */
  text-decoration: underline;
}
