 table{
  border-collapse: collapse;/*to remove double borders*/
  width: 100%;
  color: black;
  background: #fff;
 }
 
 th{
  border: 1px solid #999;
  scroll;
 }
 td{
  border: 1px solid #000;
  font-size:100%;
  text-align:center;
 }
 
 td:hover{/*hover is a pseudo class fyi*/
  color: blue;
 }
 
 a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
