/*** T H E - M A G I C - O F - O B J E C T - F I T ***/
/*****************************************************/
#video-container {
  height: 50vh;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  #video-container {
    height: 70vh;
  }
}

video {
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

/*** A E S T H E T I C S ***/
/***************************/
#video-container * {
  box-sizing: border-box;
}

#video-container body {
  background: #fff;
  color: white;
}

#video-container:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#video-container h1 {
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 1rem;
  padding: 0;
  line-height: 1;
  font-size: 5vw;
}
@media (max-width: 400px) {
  #video-container h1 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  #video-container h1 {
    font-size: 75px;
  }
}

#video-container .callout {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}