/*!
Styles for full screen background video demo
*/
/* =============================================================================
  RESETS
============================================================================= */
html,
body,
div,
h1,
p,
a,
video {
  margin: 0;
  padding: 0;
}

/* =============================================================================
  HTML, BODY
============================================================================= */
html,
body {
  height: 100%;
}

body {
  font-size: 16px;
  font-family: "Goudy Bookletter 1911","Bitter","Oxygen", sans-serif;
  line-height: 1.5;
}

/* =============================================================================
  CONTENT
============================================================================= */
.content {
  position: relative;
  top: 38%;
  z-index: 2;
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}

.content__heading {
  margin-bottom: 24px;
  opacity: 0.5;
  color: #FFFFFF;
  font-size: 64px;
  line-height: 70px;
  font-family: "Raleway","Bitter","Oxygen", sans-serif;^M
}

.content__teaser {
  margin-bottom: 24px;
  color: #595959;
  font-size: 25px;
}

.content__cta {
  display: inline-block;
  background-color: rgba(152, 159, 147, 0.5);
  margin: 0;
  padding: 12px 48px;
  color: #eeff3c;
  font-size: 22px;
  line-height: 25px;
  text-decoration: none;
  border: solid 4px #eeff3c;
  width: 130px;
}

/* =============================================================================
  VIDEO
============================================================================= */
.video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}