table, th, tr, td {
  border: 2px solid;
  border-color: black;
}
table {
  border-collapse: collapse;
  width: 100%;
}

th {
  height: 70px;
  background-color: turquoise;
  color: white;
}
td {
  text-align: center;
  padding: 15px;
}

tr:nth-child(even) {background-color: #f2f2f2;}
tr:hover {background-color: coral;}