body {
  text-align: center;
  background-color: white;
  font-family: "Comic Sans MS", sans-serif;
  color: black;
}

  /* unvisited link */
a:link {
  color: #ffdaf5;
}

/* visited link */
a:visited {
  color: red;
}

/* mouse over link */
a:hover {
  color:  blue ;
}

/* selected link */
a:active {
  color: pink;
}