body {
  background-color: white;
  color: black;
  font-family: "Arial";
  font-weight: bold;
  
}
a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: mediumblue;
}

/* mouse over link */
a:hover {
  color: #0000a3;
}

/* selected link */
a:active {
  color: darkblue;
}