#bgVideo {
  opacity: 1;
  transition: opacity 3s ease-in-out;
  transition-delay: 3s;
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

#bgVideo.fade {
  opacity: 0.15;
}

.crescent-container {
  display: flex;
  width: 50vw;
  height: 96vh;
  justify-content: center;
  align-items: center;
}

.crescent-container img {
  width: fit-content;
}

.countdown-container {
  /* background-color: green; */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  width: fit-content;
  height: 10vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 75px;
  font-family: "Source Code Pro";
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.countdown-container:hover {
  opacity: 1;
}

.z {
  color: black;

  position: absolute;
  bottom: 100px;
  left: 20px;
  width: 33vw;
  z-index: 1;
}

#z {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  transition-delay: 6s;
}

#z.fade-in {
  opacity: 1;
}
