Video BG

by davidxmartins

HTML

<div id="hero-wrapper">
    <div id="video-color-overlay">
      <video autoplay loop muted width="100%">
        <source src="https://homemverde.pt/videobg-01.mp4" type="video/mp4" /> Your browser does not support the video tag. We suggest you upgrade your browser.
      </video>
      <div id="hero-text">
        <h3>LIFESTYLE</h3>
      </div>
    </div>
  </div>

CSS

body {
 margin:0;
}
#hero-wrapper {
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
#video-color-overlay:before {
  content:"";
  position: absolute;
  top:0;
  right:0;
  left:0;
  bottom:0;
  z-index:1;
  background: rgba(14, 143, 118, 0.7);
}

#video-color-overlay {
  left: 0%;
  top: 0%;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

#hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  z-index:1;
}

video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}