/* =============================================================================
  RESETS
============================================================================= */
html,
body,
div,
h1,
p,
a,
video {
  margin: 0;
  padding: 0;
}

/* =============================================================================
  HTML, BODY
============================================================================= */
html,
body {
  height: 100%;
}

body {
  /*font-size: 16px;*/
  font-size: 1.5em;
  font-family: "Oxygen", sans-serif;
  line-height: 1.5;
  cursor: default;
}

/* =============================================================================
  CONTENT
============================================================================= */
#MainContent {
    height: 100%;
    width: 100%;    
    position: relative;
    margin: 0 auto;
    text-align: center;
}

#intro {
    /* Must manually set width/height */
     width: 500px;
     height: 132px;

     /* The magic centering code */
     margin:auto;
     position:absolute;
     top:0;bottom:0;  /*Aligns Vertically - Remove for Horizontal Only */
     left:0;right:0;  /*Aligns Horizontally - Remove for Vertical Only  */

     /* Prevent div from overflowing main window */
     max-width:100%;
     max-height:100%;
     overflow:auto;
}

.content__heading {
  /*margin-bottom: 24px;*/
  /*color: #8bc53e;*/
  color: #c5335c;
  font-size: 44px;
/*  text-shadow: 2px 2px 0 lightgray, 2px -2px 0 lightgray, -2px 2px 0 lightgray, -2px -2px 0 lightgray;*/
  text-shadow: -1px 0 lightgray, 0 1px lightgray, 1px 0 lightgray, 0 -1px lightgray;
}

.content__teaser {
  /*margin-bottom: 24px;*/
  color: #7f8184;
  font-size: 22px;
}

/* =============================================================================
  HEADER
============================================================================= */
#header {
    position: absolute;
    width: 100%;
    z-index: 99;
}

/* =============================================================================
  VIDEO
============================================================================= */
.video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -99;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}