body {
    background-color: black;/*#01080a;*/
    /*background-image: url("./skull.mp4");*/
    /*background-size: auto 100%;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
  position: fixed;
  top:0;
  left:0;
  z-index: -1;
  display:none;
}
.text-box {
  animation: 3s ease-out 0s 1 fadeInFromBG;
  position: absolute;
  top: 300px;
  font-size: 40px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 7px;
  word-spacing: 12px;
  text-transform: uppercase;
  color:rgb(238, 238, 238);
}
.text-box > .heading {
    /*font-size: 3vw;*/
    text-align: center; 
    font-size:80%;
}
.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: row;
}
.button {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
  margin-left:20px;
  margin-right:20px;
  word-spacing: normal;
  letter-spacing: 5px;
  border: 1px solid white;
  background: black;
  cursor: pointer;
}

table {
    animation: 5s ease-out 0s 1 fadeInFromBG;
    border-collapse: collapse;
    margin: 25px 0;
    font-family: sans-serif;
    font-size: 0.6em;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin-left: auto; 
    text-transform: none;
    margin-right: auto;
    background: rgba(0,0,0,0.2);
}

table th,
table td {
    padding: 12px 15px;
}

th {
    text-align: center;
}
.text-box > p {
    position: relative;
    font-size: 10px;
    text-align: center;
    letter-spacing: 1px;
    word-spacing: 2px; 
    background: rgba(0,0,0,0.4);
}

.btn {
    position: relative;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
        cursor: pointer;
        border: 1px solid #a7aaac;
        background-color: transparent;
        color: #ffffff;
        font-size: 2vw;
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.6);
}

.container {
    position:fixed;
    width:auto;
    height:100vh;
    margin-left: auto;
    margin-right: auto;
}
video {
    height: 100vh;
    object-fit: fill;
}

.poolwrapper > div {
    text-align: center;
    font-size:50%;
}


@keyframes fadeInFromBG {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}