* {
  margin: 0;
  padding: 0;
}
/* body {
  height: 2500px;
} */
.video-background {
  height: 100vh;
  position: relative;
  margin: 0 !important;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #68faff;
}
video {
  margin: auto;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(0%, 0%);
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  /* height: auto; */
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

#mute {
  cursor: pointer;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50px;
  left: 50px;
  background-size: cover;
}

@media only screen and (max-width: 617px) {
  #mute {
    width: 25px;
    height: 25px;
    top: 25px;
    left: 25px;
  }
}
