.underline-text {
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
    font-style: normal;
}

.underline-text:hover {
    background-image: linear-gradient(rgb(0, 162, 255), rgb(0, 162, 255));
    background-size: 100% 2px;
  }

body {
  font: 1em 'PT Sans', Tahoma, Arial;
  background-color: white;
  color: #333;
}
.menu {
  width: 100%;
  display: table;
}

.menu ul {
  display: table-row;
}

.menu li {
  display: table-cell;
	background: #A9A9A9;
}
.menu ul li:hover, .menu a:hover {
	background: #87CEEB;
}
.menu li a {
	display: block;
	padding: 8px 15px;
	color: #fff;
	text-align: center;
}

table {
  font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
  font-size: 14px;
  border-collapse: collapse;
  text-align: center;
}
tr, td:first-child {
  background: #C0C0C0;
  color: black;
  padding: 10px 20px;
}
tr, td {
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: white;
}
td {
  background: #87CEEB;
}
tr:first-child, td:first-child {
  text-align: center;
}

.link {
  text-decoration: none;
  color: black;
}