/*!
Styles for full screen background video demo
*/
/* =============================================================================
  RESETS
============================================================================= */
html,
body,
div,
h1,
p,
a,
video {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Helvetica Neue Medium";

}

/* =============================================================================
  TYPOGRAPHY
============================================================================= */

.title {
  font-size: 100px;
  position: absolute;
  z-index: 2;
  color: white;
  margin-left: 5%;
  margin-top: 5%;
}

.datetime {
  font-size: 50px;
  position: absolute;
  z-index: 3;
  color: white;
  margin-left: 69%;
  margin-top: 45%;
}

/* =============================================================================
  POINTER
============================================================================= */

* { cursor: pointer; }

/* =============================================================================
  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%);
}

