body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevents scrolling */
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden; /* Hide the excess of the video */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will cover the whole area */
    position: absolute;
    filter: grayscale(100%); 
}

.title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 3em;
    text-shadow: 2px 2px 4px #000000;
}

@media (max-width: 600px) {
    .title-container {
        font-size: 2em;
    }
}