@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic,900);
* {
  box-sizing: border-box;
}


video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
	z-index: -1;
}
.overlay {
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
	margin-left: 50px;
	margin-right: 50px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
    .btn-video {
        color: #ffffff;
        background-color: #76b72a;
        border-color: #76b72a
    }
    .btn-video:hover {
	color: #ffffff;
	 background-color: #a0db53;
	border-color: #a0db53
    }
@media screen and (min-width: 601px) {
  div.example {
    font-size: 80px;
  }
}

/* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
@media screen and (max-width: 600px) {
  div.example {
    font-size: 40px;
  }
}