body {
  width: 100%;
  height: 100%;
  background-color: black;
}

#video,
body {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

#welcome {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  font-size: 20px;
  color: #ffffff;
  transition: 0.6s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#hidden {
  transition: 0.6s;
}

.wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  margin: auto;
  line-height: 0.7;
}

.description {
  width: auto;
  height: auto;
  margin: 30px;
  text-align: center;
  transition-duration: .4s;
  transition-timing-function: ease-out;
  text-shadow: 3px 3px 10px black;
  font-family: 'Titillium Web', sans-serif;
  letter-spacing: -2px;
  font-size: 3vh;
  color: white;
}

.description:hover {
  -webkit-transition: .3s;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  text-shadow: 0px 0px 30px white;
}

/* Background Fade */
@keyframes fadebg {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.4;
  }
}

.bgfade {
  animation-timing-function: ease-in;
  animation-name: fadebg;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* Text - Links Fade */
@keyframes fadetext {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadedescription {
  animation-timing-function: ease-in;
  animation-name: fadetext;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-delay: .1s;
  opacity: 0;
}

.glowImg {
  color: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 5px #fff;
  cursor: pointer;
}

.glowImg:hover {
  color: rgba(255, 255, 255, 1);
  box-shadow: 0 5px 50px rgba(137, 22, 219, 0.4);
}