/* Reset and base */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
}

.hero-video {
  display: block;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}