Here if u want a cool header with a video background like this:
https://valorant-italia.it/forum/
Simply modify the path of your video in the code.
<style>
/* Reset */
*{
margin: 0;
paddding: 0;
}
.wrapper{
width: 100%;
height: 40vh;
overflow: hidden;
}
.wrapper .wrapper__video{
object-fit: cover;
width: 100%;
height: 100%;
}
</style>
<div class="wrapper">
<video autoplay loop muted class="wrapper__video">
<source src="your/video/path/video.mp4">
</video>
</div>