/* CSS Document */

video {
    max-width: 100%;
}

.video-container {
    cursor: pointer;
}	
	
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.play-button-overlay:hover {
    background-color: rgba(0, 0, 0, 0.8);
}