Video loop

For some reason I cant get this video to loop. What im I missing?

HTML
<video muted autoplay loop class="video">
<source src="/video/video.mp4" type="video/mp4">
</video>


CSS
.video{
position: absolute;
z-index: -1;
height: 100vh;
width: 100vw;
object-fit: cover;
}

Thanks in advance 🙂
Was this page helpful?