Is it possible to have a video background take up half of the screen on a homepage?
Currently, I am using Bootstrap 4's grid system to divide the page and using html5 to implement the video.
<div class="container-fluid">
<div class="row">
<div id="leftcontainer" class="col-md-6">
<div id="video">
<video class"video-fluid z-depth-1" autoplay loop muted width="100%">
<source src="videos/backgroundVid2.mp4" type="video/mp4" />
</video>
<button>Download Brochure</button>
<button>Contact Us</button>
</div>
</div>
</div>
</div>
After running the code, I noticed that the video does not fit properly in the container and is not responsive to changes in screen size.