/* =============================================================================
  RESETS
============================================================================= */
html,
body,
div,
h1,
p,
a,
video {
  margin: 0;
  padding: 0;
}

/* =============================================================================
  HTML, BODY
============================================================================= */
html,
body {
  height: 100%;
}

body {
  font-size: 16px;
  font-family: 'Space Mono', monospace;
  line-height: 1;
}

a {
  color: red;
  text-decoration: none;
}

/* =============================================================================
  CONTENT
============================================================================= */
.content {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0; 
  z-index: 2;
  margin: 0;
  background-image: url(../media/black-medium-checks.png);
  background-repeat: repeat;
  opacity: 0.5;
}

.info {
  position: absolute;
  bottom: 0;
  z-index: 3; 
  text-align: left;
  margin: 0;
  padding: 50px;
  color: red;
  font-size: 40px;
  text-decoration: none;
}

.social {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  margin: 0;
  padding: 50px;
  color: red;
  font-size: 40px;
  text-decoration: none;
 }

/* =============================================================================
  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%);
}

