body {
    padding: 0;
    margin: 0;
    height: 100vh;
    width: 100%;
    background: #000000;
}

form {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all 1s;
    width: 50px;
    height: 50px;
    background: white;
    box-sizing: border-box;
    border-radius: 25px;
    border: 4px solid white;
    padding: 5px;
    margin-top: 100px;
    animation: thead 1.1s forwards ease-in;
}

.jumbotron {
    background: transparent;
    background-image: url(https://images.freecreatives.com/wp-content/uploads/2016/03/Amazing-Outer-Space-Background.jpg);
    position: relative;
    height: 500px;
    padding: 20px;
    margin: 0;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
}

.wrapper {
  position: relative;
  min-height: 100%;
  padding-bottom: 130px;
  overflow: auto;
}


input{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;;
    height: 42.5px;
    line-height: 30px;
    outline: 0;
    border: 0;
    display: none;
    font-size: 1em;
    border-radius: 20px;
    padding: 0 20px;
}

.fa{
    box-sizing: border-box;
    padding: 12px;
    width: 42.5px;
    height: 42.5px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 50%;
    color: #07051a;
    text-align: center;
    font-size: 1.7em;
    transition: all 1s;
}

form:hover {
    width: 400px;
    cursor: pointer;
}

form:hover input{
    display: block;
}

form:hover .fa{
    background: #07051a;
    color: white;
}

thead {
    animation: thead 1.1s forwards ease-in;
}

td {
    animation: td 1.3s forwards ease-in;
}

#table-name {
    animation: title 1.1s forwards ease-in;
}

#table-date {
    animation: smaller-title 1.1s forwards ease-in;
}

/* keyframe animations which will be used to animate the title */
@keyframes title {
  from {
    opacity: 0;
  }

  to {
    /* font-size: 2.0rem; */
    opacity: 1;
  }
}

@keyframes smaller-title {
  from {
    /* font-size: 0;   */
    opacity: 0;
  }

  to {
    /* font-size: 0.7rem; */
    opacity: 1;
  }
}

@keyframes thead {
  from {
    /* font-size: 0;   */
    opacity: 0;
  }

  to {
    /* font-size: 0.7rem; */
    opacity: 1;
  }
}

@keyframes td {
  from {
    /* font-size: 0;   */
    opacity: 0;
  }

  to {
    /* font-size: 0.7rem; */
    opacity: 1;
  }
}

.hidden {
  display: none;
}
  
#advFilter{
  color: grey;
  background-color: black;
  border: none;
}

#advFilter:hover {
  background-color: rgb(43, 42, 42);
}

