table{
  border-collapse: collapse;
}


th, td{
  border: 2px brown solid;
  width 400px;
  padding: 10px 10px;
}

td{
  text-align: right;
}

th{
  background-color: orange;
  color: red;
}

.gold{
  background-color: gold;
  font-size: 20px;
  font-weight: bold;
}

tr:nth-child(odd){
  background-color: silver;
}

tr{
  transition: all 2s ease-in-out;
}

tbody tr:hover{
  background-color: blue;
  font-size: 30px;
  font-weight: bolder;
}
