body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: black;
    cursor: pointer;
    overflow: hidden;
}

#video {
	position: absolute;
	top: 50%;
	left: 50%;
  transform: translateX(-50%) translateY(-50%);
	min-width: 100%;
  min-height: 100%;
	margin: 0 auto;
	z-index: -1;
}

.money {
  filter: brightness(0.7);
  cursor: grab;
  position: absolute;
  -webkit-user-drag: none;
  z-index: 3;
}

.money:active {
  cursor: grabbing;
}

#story {
  display: none;
  position: absolute;
  left: 5%;
  top: 5%;
  background-color: white;
  z-index: 1;
}

#eye {
  position: sticky;
  top: 0;
  left: 0;
  float: left;
  opacity: 0;
}

#eyeimg {
  position: absolute;
  top: 0;
  left: 0;
}

#storytext {
  padding: 30px;
  position: absolute;
  white-space: pre-line;
  z-index: 2;
}

.shift {
  animation: shift 3s ease;
}

@keyframes shift {
  0% { top: 100%; }
  100% { top: 5%; }
}