.video-background{
    position: relative;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

#background-video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; /* Zoom for desktop */
    height: 100vh;
    z-index: 0;
    background-color: var(--nsf-light);
    object-fit: cover;
    transition: filter 0.3s ease-in-out;
    overflow: hidden;
    filter: brightness(0.8);
}

#fallback-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}