Passer au contenu principal
.video-event-wrap { display: flex; min-height: 100vh; justify-content: center; background:#000;}
.video-presentation { max-height: 100vh; width: 100%; margin: 0 auto; display: block; outline: none;}
.video-btn { position: fixed; top: 0; right: 0; z-index: 10; text-decoration: none; left: 0; bottom: 0; text-align: center; font-size: 220px; color: white; display: flex; align-items: center; justify-content: center; background:rgba(0,0,0,0.5);}
.video-btn i {}
.video-btn:hover, .video-btn:focus { color: #fff; text-decoration:none;}
@media (max-width: 767px){ .video-btn { font-size: 100px;} .video-btn svg {width: 44px !important;}}
$(document).ready(function() {
$('.video-btn').click(function(e) {
e.preventDefault();
$(this).fadeOut();
$('.video-presentation').get(0).play();
});
});