
body, html {
    height: 100%;
    margin: 0;
}

.video-container {
    position: relative;
    height: 100vh; /* Full height */
    overflow: hidden;
}

#bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Ensure aspect ratio is maintained */
    position: fixed;
    top: 0;
    left: 0;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

#logo {
    max-width: 100px; /* Adjust based on your logo's size */
    filter: hue-rotate(20deg) saturate(150%); /* Adjust the color to orange */
}
