.table {
  font-family: "Lato", sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.table__caption {
  color: #222;
  text-shadow: 1px 1px 10px #777;
  font-size: 23px;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 0 2px;
  margin: 0 auto 0 0;
  width: max-content;
}

.table__caption--dark {
  color: #ccc;
}

.table__cell {
  background-color: #282828;
  color: #fff;
  width: 20%;
  border: 1px solid #666;
  padding: 15px 10px;
  text-align: center;
  vertical-align: middle;
}

.table__cell--header {
  background-color: #1a1a1a;
  font-weight: normal;
}

.table__row:nth-child(even) > .table__cell {
  background-color: #2c2c2c;
}

.table__row:nth-child(even) > .table__cell--header {
  background-color: #1a1a1a;
}

.table__row:hover > .table__cell {
  background-color: #777;
}

.table__row:hover > .table__cell--header {
  background-color: #666;
}
