#video {
    padding: 6vh 0;
    justify-content: center;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.video-thumbnail-container {
    border-radius: 8px;
    width: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 25vw;
    cursor: pointer;
    border-radius: 8px;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    transition: transform 0.3s;
}

.video-thumbnail:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1); /* Slight hover effect */
}

#video h2 {
    text-align: left;
    color: white;
}

#video p {
    color: white;   
    text-align: left;
}

#video .container {
    padding-top: 10vh; /* Adds vertical space at the top */
}

.video-thumbnail {
    background-image: url('https://img.youtube.com/vi/PRDe0OXGXak/maxresdefault.jpg'); 
    background-size: cover; 
    width: 74%; 
    height: 47%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    cursor: pointer;
}
