/* 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: #333;
    color: #eee;
    font-family: Lucida;
  }

 a:link {
  color: #fff; /* Unvisited link color */
  text-decoration: none; /* Removes the default underline */
}

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

a:hover {
  color: red; /* Color when mouse hovers over it */
  text-decoration: underline; /* Adds underline on hover */
}

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