#video-intro  {
    max-width: 1000px;
    padding: 0;
}

.video-container {
    position: relative;
    width: fit-content;
    height: fit-content;
    margin: 100px auto;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

video {
    display: block; /* This removes extra space below the video */
    max-width: 100%; /* Optional: makes the video responsive */
    width: 100%;
    max-width: 1512px;
    height: auto;
}

.play-button {
    position: absolute;
    top: 78%;  /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    padding: 15px 30px; /* Increase padding for a larger button */
    font-size: 20px; /* Increase font size */
    color: black;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border: none;
    border-radius: 50px; /* Rounded corners for a bubble-like appearance */
    box-shadow: 0 4px 8px rgba(0,0,0,0.5); /* Subtle drop shadow for depth */
    cursor: pointer;
    z-index: 99;
}



.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will ensure the image covers the video area completely */
    z-index: 1; /* Make sure the image is above the video but below the play button */
}
