body, html {
    height: 100%;
    margin: 0;
    overflow: hidden; /* Prevent scrolling */
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: -50%;  /* Increase these values to cover the whole screen */
    left: -50%;
    width: 200%;
    height: 200%;
}

#video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 10, 39, 0.5); /* Dark overlay to ensure text readability */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2; /* Ensure content is above the video */
    display:flex;
    flex-direction: column;
    gap:20px;
}

.footer{
    position:fixed;
    bottom:10px;
}