@charset "utf-8";
/* CSS Document */

html,body {
    width:100vw;
    height: 100vh;
    margin: 0;
}
.video-container {
  height: 100vh;
  position: relative;
  overflow: visible;
}
  @media(min-width: 600px) {
	  #video-container {
    height: 100vh;
  }
}
video {
  object-fit: cover; 
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.nav-zone{
	background: rgba(0,0,0,0.7);
	height: 60px;
	position: absolute;
	width: 100vw;
	z-index: 100;
}

* {
  box-sizing: border-box;
}

body {
  background: #333;
  color: white;
}

.video-container {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(black, .2);
  z-index: 1;
}
@media (max-width: 767px) {
	#video {
		visibility: hidden;
		}
	}

h1 {
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1;
  font-family: Futura, Helvetica, sans-serif;
  font-size: 5vw;
}
  @media (max-width: 400px) {
	  h1{
    font-size: 22px;
  }
}
  @media (min-width: 1200px) {
	  h1{
    font-size: 75px;
  }
}

.callout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
	padding-top: 40%;
  text-align: center;
  z-index: 10;
}



