body {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    background-color: black;
    user-select: none;
}

#video {
	position: absolute;
	top: 50%;
	left: 50%;
  transform: translateX(-50%) translateY(-50%);
	min-width: 100%;
  min-width: 100%;
	margin: 0 auto;
	z-index: -1;
}

#story {
  font-family: "Libre Baskerville", serif;
  position: absolute;
  color: white;
  width: 500px;
  white-space: pre-line;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}

#crowd {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 35%;
  opacity: 0;
}

.fadein {
  animation: fadein 3s ease;
}

.shift {
  animation: shift 5s ease infinite;
}

@keyframes fadein {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
  100% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
  }
}

@keyframes shift {
  0% {
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
  }
  50% {
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
  }
}

a {
  color: gray;
  text-decoration: none;
}