* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
body,
html {
  overflow-x: hidden;
}
.video-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#video {
  min-width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(25%);

  z-index: -1;
}
.video-wrapper,
#video {
  width: 100%;
  pointer-events: none;
  touch-action: none;
  user-select: none;
}
.video-wrapper {
  touch-action: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.video-wrapper p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: white;
  text-align: center;
}
@media screen and (min-width: 360px) and (max-width: 640px) {
  .video-wrapper p {
    font-size: 20px;
  }
  #video {
    filter: brightness(50%);
  }
  .video-wrapper,
  #video {
    width: 100%;
    pointer-events: none;
    touch-action: none;
    user-select: none;
  }
  .video-wrapper {
    touch-action: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
  }
}
