/* Video background styling */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

/* Adjust content to be visible over video */
body, html {
  background: none; /* override original image background */
  color: white;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  scroll-padding-top: 80px;
}
