.scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(-30px) rotate(-45deg);
  }
  60% {
    transform: translateY(-15px) rotate(-45deg);
  }
}

body {
  background-color: black;
}

/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.overlay {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%; /* Optional: adjust as needed */
}

h1 {
  font-size: 80px;
  color: white;
}

h2 {
  font-size: 40px;
  color: white;
}

h3 {
  color: white;
}

@font-face {
  font-family: 'Birds of a Feather';
  src: url('../fonts/bfeather.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.bird {
  font-family: 'Birds of a Feather', sans-serif;
  font-size: 18px;
}

