@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");

body {
  background-color: #222222;
}

tr {
  background-color: rgb(21, 23, 27);
}

td {
  color: white;
  font-size: 2vh;
}

footer {
  color: white;
  text-align: center;
  font-size: 2vh;
  background-size: 100% 100%;
  justify-content: center;
  width: 100%;
  height: 50px;
}

a:link {
  color: blueviolet;
  font-size: 2vh;
}

a:visited {
  color: blueviolet;
  font-size: 2vh;
}

a:hover {
  font-size: 18px;
  color: royalblue;
  transition: all .2s;
}

a {
  transition: all .2s;
  font-size: 20px;
  text-align: center;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  min-height: 70vh;
  margin-left: auto;
  margin-right: auto;
}

table tr th,
table tr td {
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  padding: 5px;
}

table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid #bbb;
  width: 25%;
}

table tr th {
  background: #eee;
  text-align: left;
  border-top: solid 1px #bbb;
  border: 1px solid black;
  border-collapse: collapse;
  font-size: 30px;
}

table tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

table tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.title {
  text-align: center;
  color: rgb(146, 78, 209);
  text-shadow: 0px .2vh .5vh #ffffff;
  font-size: 5vh !important;
}
@media (max-width: 1000px) {
  table {
    width: 100%;
  }
}