body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrollbars if video dimensions exceed viewport */
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Place video behind other content */
    object-fit: cover; /* Ensure video covers the entire area while maintaining aspect ratio */
}

.content {
    position: relative; /* Position content relative to its normal flow */
    z-index: 1; /* Place content above the video */
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
}