I need help replicating a unique design I came across in a graphic design mockup. It involves a background video with a transparent green overlay, an image of a man fixed to the right side, and text flowing over it. I've managed to recreate most of it using bootstrap, but there are still some issues, especially with keeping the image fixed. Any tips or alternate methods would be greatly appreciated.
Here is the original mockup I'm trying to emulate in CSS: https://i.sstatic.net/cRwBr.png
And here's the code snippet from my attempt:
*::before, *, *::after{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.jumbotron {
position: relative;
overflow: hidden;
// More CSS styles...
}
// More CSS styles...
HTML body content goes here...
You can view the full code on jsFiddle.