* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.video-container {
  width: 100vw;
  height: 100vh;
  background: black;
  position: relative;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mute / Unmute button */
.mute-btn {
  position: absolute;
  bottom: 100px;
  right: 30px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width:768px){
	.video-container {
	background: rgba(0, 0, 0, .9);
	}
	#video {
    width: 100%;
    height: 100vh;
	}
	video {
		object-fit: scale-down;
	}
}