I currently have an image header, but I would like to incorporate a video while adding some text on top as a logo. Here is some inspiration for what I am looking for:
<div class="video-container">
<video autoplay loop muted>
<source src="http://www.icutpeople.com/wp-content/themes/icutpeople/assets/video/waynesworld.mp4" type="video/mp4">
</video>
<div class="overlay-desc">
<h1>Wayne's World</h1>
</div>
</div>
body {
background: #333;
}
.video-container {
position: relative;
}
video {
height: auto;
vertical-align: middle;
width: 100%;
}
.overlay-desc {
background: rgba(0,0,0,0);
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
display: flex;
align-items: center;
justify-content: center;
}