body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevent scroll bars */
}

#video-bg {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-width: 100%; /* Ensure the video covers the entire width */
    min-height: 100%; /* Ensure the video covers the entire height */
    object-fit: cover; /* Scale the video to cover the entire container while maintaining aspect ratio */
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: -100; /* Ensure the video is behind other content */
    transform: translateX(-50%) translateY(-50%); /* Center the video */
}