html,
body {
  height: 100%;
}
body {
  margin: 1;
  background: linear-gradient(45deg, #1b1b1b, #7e7d7d);
  font-family: sans-serif;
  font-weight: 100;
}

.container {
  position: relativ;
  top: 50%;
  left: 50%;

}
table {
	width: 1280px;
  border: inset 5pt;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

th,td {
  padding: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
th {
  text-align: left;
  font-size: 18px;
}
thead th {
  background-color: #228b22;
  text-align: left;
}
tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
tbody td {
  position: relative;
  text-align: left;
  font-size: 14px;

}

tbody td:hover:before {
display: grid;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

  tr:nth-child(even) {
  background: #228b22;
  }
