body {
  margin: 0;
  padding: 0;
/*  Background fallback in case of IE8 & down, or in case video doens't load, such as with slower connections  */
  background: #eee;
  background-attachment: fixed;
  background-size: cover;
}

/* The only rule that matters */
#video-background {
/*  making the video fullscreen  */
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-filter: blur(25px);
  -moz-filter: blur(25px);
  -o-filter: blur(25px);
  -ms-filter: blur(25px);
  filter: blur(25px);
}

/* These just style the content */
article {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 253, 56, 0.6);

}

h1 {
  position: absolute;
  top: 10%;
  font-size: 42px;
  color: #000;
  font-family: "proxima-nova",sans-serif;
  font-weight: 100;
  line-height: 1.3;
  text-align: left;
  margin-left: 100px;
  margin-right: 100px;
}

h1 span {
  color: #000;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}


.about a:link{color:#000; text-decoration:none; border-bottom: 2px solid #000;padding-bottom: 2px; }
.about a:visited{color:#000; text-decoration:none; border-bottom: 2px solid #000; padding-bottom: 2px; }
.about a:hover{color:#000; text-decoration:none; border-bottom: 2px solid #000;
padding-bottom: 4px; }
.about a:active{color:#000; text-decoration:none; border-bottom: 1px solid #000; padding-bottom: 2px; }
