body, html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Base styles */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

@media (max-aspect-ratio: 15/9) {
    .video-background video {
        transform: translate(-40%, -50%);
    }
}

@media (max-width: 480px) {
    .video-background video {
        transform: translate(-40%, -50%);
    }
}


.main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
}

audio {
    display: none; /* Hide the audio element */
}