html {
  height: 100%;
}
body {
  background: 
    -webkit-linear-gradient(rgba(5, 610, 255, 0.4), rgba(135, 60, 255, 0.0) 80%),
    -webkit-linear-gradient(-45deg, rgba(120, 155, 255, 0.9) 25%, rgba(255, 160, 65, 0.9) 76%);
}


table {width: 99%; border-collapse: separate; border-spacing: 3px; margin:0 auto;} 
table thead tr {color: #ffffff;  font-size: 20px; text-transform: uppercase; height: 50px; text-align:center;}
table thead tr td {border-radius: 8px 8px 8px 8px; background: rgba(46,130,195, 0.8);height: 50px;}
table tbody tr td {border: 1px solid #2e82c3; border-radius: 8px; min-height: 30px;background: rgba(203, 223, 239, 0.582); text-align: left; padding: 5px;}
table tbody tr td:hover {background:  #f2f3ff; transition-duration: 0.3s;}


.number {
    font-size: 16px; 
    text-align:center;
    width: 7%;
}

.filename a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #175b8f;
}

.button {
    text-align: center;
}

.link a:hover {
background-position: right center;
}


/*bg anim*/
.bg {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
  bottom:0;
  left:-50%;
  opacity:.5;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:5s;
}

.content {
  background-color:rgba(255,255,255,.8);
  border-radius:.25em;
  box-shadow:0 0 .25em rgba(0,0,0,.25);
  box-sizing:border-box;
  left:50%;
  padding:10vmin;
  position:fixed;
  text-align:center;
  top:50%;
  transform:translate(-50%, -50%);
}

h1 {
  font-family:monospace;
}

@keyframes slide {
  0% {
    transform:translateX(-25%);
  }
  100% {
    transform:translateX(25%);
  }
}

.footer {

  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 20px;
  text-align: center;
}

