/* Basic reset and dark theme */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212; /* A dark grey background */
    color: #f0f0f0; /* A light grey font color */
    overflow: hidden; /* Prevent scrollbars from showing */
}

/* Styles for the background video */
.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100; /* Pushes the video behind other content */
    transform: translate(-50%, -50%); /* Centers the video */
    object-fit: cover; /* Ensures the video covers the whole screen without distortion */
}

/* Styles for the main content */
.content {
    position: absolute; /* Change from relative to absolute */
    bottom: 20px; /* Position it 20 pixels from the bottom */
    left: 50%; /* Center it horizontally */
    transform: translateX(-50%); /* Adjust for perfect horizontal centering */
    z-index: 1;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    max-width: 600px;
    width: 90%; /* Use a percentage for better responsiveness */
    box-sizing: border-box; /* Include padding in the width calculation */
}
h1, p {
    margin: 0;
    padding: 10px 0;
}

/* Basic styling for the fallback image */
.background-video img {
    display: none; /* Hide the fallback image by default */
}