.video-header {
    position: relative; /* Important for absolute positioning of video */
    width: 100%;
    height: 400px; /* Make it full viewport height */
    overflow: hidden; /* Hide any overflow from the video */
}

.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 400px;
    transform: translate(-50%, -50%); /* Center the video */
    object-fit: cover; /* Ensures the video covers the container */
    z-index: -1; /* Puts the video behind other content */
}

.parallax_dark_overlay_vtuber {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0); /* Your dark overlay */
    z-index: 1; /* Above the video */
}

#intro {
    position: relative; /* To be above the overlay */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Make content vertically centered in the header */
    color: white; /* Example text color */
    text-align: center;
}


div.parallax_dark_overlay_vtuber {
    background-image: url('../img/dark_overlay_half.png');
    background-size: 100% 100%;


}