@font-face {
  font-family: KMR;
  src: url(KMR-Waldenburg-Normal.otf);
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: KMR;
  overflow: hidden; /* prevents scrolling from video overflow */
}

/* Background video styles */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* fills screen but keeps center as anchor */
  z-index: -1;
}


/* Text container */
.header-content {
  margin-left: 1rem;
  margin-right: 2rem;
display: flex;
justify-content: space-between;
color: white;
}

@media (max-width: 600px) {
    #bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* fills screen but keeps center as anchor */
  z-index: -1;
    }
}

