
body {
  margin: 0;
  padding: 0;
  text-align: center;
  user-select: none;
}

table {
  border: 3px solid;
  border-collapse: collapse;
  margin: 10% auto;
}

td, th {
  font-size: large;
  padding: 20px;
}

tr:nth-child(odd) {
  background-color: #f05345;
}

tr:nth-child(odd) td:hover, tr:nth-child(odd) th:hover {
  background-color: #ec8177;
}

tr:nth-child(even) {
  background-color: #fac29c;
}

tr:nth-child(even) td:hover, tr:nth-child(even) th:hover {
  background-color: #f59f65;
}
