/* Reset default margins and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Ensures the video covers the entire viewport */
}

/* Style for the video element */
#bg-video {
    /* Fixed position keeps it in the viewport even if you scroll */
    position: fixed; 
    top: 0;
    left: 0;
    /* Make sure the video covers the entire screen */
    width: 100vw;
    height: 100vh;
    /* object-fit: cover ensures the video covers the whole area without stretching, 
       clipping edges if necessary */
    object-fit: cover;
    /* Pushes the video behind all other content */
    z-index: -100;
}

/* Style for the overlaid content */
.content {
    /* Ensure content is positioned above the video */
    position: relative;
    z-index: 1; 
    /* Centers the content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Makes content fill the screen (or the area where you want it) */
    height: 100vh; 
    /* Text styling for a cinema feel */
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    /* Add a subtle background overlay for contrast */
    background-color: rgba(0, 0, 0, 0.4); 
    padding: 20px;
}

h1 {
    font-size: 4em;
    text-shadow: 2px 2px 4px #000000;
}

p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

button {
    padding: 10px 20px;
    font-size: 1.2em;
    background-color: #e50914; /* Netflix-like red */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}