body {
  font-family: monospace;
  color: white;
  background-color: black;
}

#space {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  width: 700px;
  padding: 100px;
  font-size: 24pt;
  position: absolute;
  white-space: pre-line;
  overflow-anchor: none;
}

#video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  margin: 0 auto;
  z-index: -1;
  opacity: 0;
}

#cursor {
  display: inline-block;
  animation: rotate 1s linear 0s infinite;
  cursor: pointer;
}

.sun {
  position: fixed;
  opacity: 0;
}

.sun:hover {
  opacity: 0.5;
}

#sun1 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#sun2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

a {
  text-decoration: none;
}

@keyframes rotate {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}