body{
    /* background-color: rgb(59, 21, 226); */
    background-image: linear-gradient(rgba(34, 95, 21, 0.952), rgba(0, 252, 63, 0.87));
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
   text-align: center; 
}

* {
  padding: 0;
  margin: 0;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}

table {
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 14px;
border-radius: 10px;
border-spacing: 0;
text-align: center;
}

caption {
  color: white;
  margin-bottom: 7px;
  font-size: 20px;
}

th {
background: rgba(255,137,0,0.9);
padding: 10px 20px;
  color: rgba(129, 69, 0, 1);
}
th, td {
border-style: solid;
border-width: 0 1px 1px 0;
border-color: rgba(0,0,0,0.1);
}

th:first-child {
border-top-left-radius: 5px;
}
th:last-child {
border-top-right-radius: 5px;
border-right: none;
}
th:first-child, td:first-child {
padding: 7px 8px;
}

td {
  padding: 7px 20px;
  background: rgba(230,230,230,1);
  color: rgba(0, 0, 0, 0.6);
}

.player td {
  color: rgba(0, 0, 0, 1.0);
  font-weight: bold;
  background: rgba(215, 215, 215, 1);
  color: rgba(0, 0, 0, 0.8);
  
}

tr:last-child td:first-child {
border-radius: 0 0 0 5px;
}
tr:last-child td:last-child {
border-radius: 0 0 5px 0;
}
tr td:last-child {
border-right: none;
}