body{
    font-family: Inter, sans-serif;
}
.video-container {
    position: relative;
    height: 80vh;
    overflow: hidden;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
    width: 80%;
}
/* Default: Mobile first */
#desktopHeader {
  display: none;
}

#mobileMenuButton {
  display: block;
}

/* Desktop only: 1281px and above */
@media (min-width: 1281px) {
  #desktopHeader {
    display: block !important;
  }

  #mobileMenuButton {
    display: none !important;
  }
}
