body {
	background: #000;
	color: #BFB397;
	font-size: 21px;
}

header {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

header video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

header .container {
  position: relative;
  z-index: 2;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #333;
  opacity: 0.8;
  z-index: 1;
}
.logo {
  width: 400px;
  height:auto;
}
.icon {
  width: 72px;
  height:auto;
  margin: 10px 10px;
}
.icon:hover {
  margin: 10px 10px;
  width: 72px;
  transition-property: width;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
}
.fancy-text-1 {
  font-family: 'Orbitron', cursive;
  font-size: 52px;
  letter-spacing: 2px;
}
.fancy-text-2 {
  font-family: 'Orbitron', cursive;
  font-size: 28px;
}

a {
	color: #e2e2e2;
	text-decoration: none;
	background-color: transparent;
	transition-property: color;
	transition-duration: 0.5s;
}

a:hover, a:visited {
	color: #ccc;
	text-decoration: none;
	background-color: transparent;
	transition-property: color;
	transition-duration: 0.5s;
}


@media only screen and (max-width: 640px) {
	.logo {
	  width: 600px!important;
	  height:auto!important;
	  margin-bottom: 40px!important;
	}
	a {
	font-size: 32px!important;
	padding-top: 40px!important;
	}
	.fancy-text-1 {
	  font-size: 36px!important;
	}
	.fancy-text-2 {
	  font-size: 24px!important;
	}
	p.lead{
	font-size: 2rem!important;
	margin-top: 40px!important;
	}
	.icon {
	  width: 72px!important;
	  height:auto;
	  margin: 10px 10px;
	}
}