#smileVideo {
max-width: 100%;
width: 100%;
height: auto;
display: block;
border: 3px solid #eee;
border-radius: 10px;
box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
object-fit: cover;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
#smileVideo {
border-radius: 8px;
height: auto;
}
}
document.addEventListener("click", function () {
var video = document.getElementById("smileVideo");
if (video.paused) {
video.play();
}
video.muted = false; // enable sound after user clicks
});