html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif"
}

/* VIDEO BACKGROUND */
#video-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}
#video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* End of VIDEO BACKGROUND */

.header-text {
  position: absolute;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: translateY(-5rem);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.header-text h1 {
  font-weight: 400;
  font-size: 3rem;
  line-height: 2;
}
.header-text span {
  display: block;
  font-weight: 900;
  font-size: 6rem;
}
/* STARS */
.star {
  position: fixed;
  top: -10px;
  width: 2px;
  height: 30px;
  opacity: 0.6;
  animation: fall linear infinite;
  z-index: -1;
  filter: blur(0.3px);
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}
