body {
  background-color: black;
  color: white;
  font-family: Comic Sans MS;
  font-size: 30px;
  text-align:center;
  
}
/* Unvisited links */
a:link {
  color: purple;
}

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

/* Links when mouse is over them */
a:hover {
  color: lightblue
}

/* Links when clicked */
a:active {
  color: white
}