Видео становится поверх всего, а мне нужно сверху.
HTML:
<div class="bgvideo">
<video src="static/video/water.mp4" type="video/mp4" autoplay muted loop></video>
<div class="video-text">
<h1>Future's here</h1>
</div>
</div>
CSS:
.bgvideo video {
height: 70vh;
width: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.bgvideo {
height: 70vh;
width: 100%;
position: absolute;
top: 0;
left: 0;
object-fit: cover;
z-index: 1;
}
.video-text {
color: aqua;
z-index: 2;
}