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: #0A4A72;
  opacity: 0.25;
  z-index: 1;
}
.logo {
  width: 400px;
  height:auto;
  margin-bottom: 40px;
}
.icon {
  width: 42px;
  height:auto;
  margin: 10px 10px;
}

.fancy-text-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 200;
}
.fancy-text-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

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 (pointer: coarse) and (hover: none) {
  header {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }
  header video {
    display: none;
  }
}
*/

@media (max-width: 640px) {
	.logo {
	  width: 600px!important;
	  height:auto!important;
	  margin-bottom: 40px!important;
	}
	a {
	font-size: 2rem!important;
	padding-top: 40px!important;
	}
	.fancy-text-1 {
	  font-size: 2.5rem!important;
	}
	.fancy-text-2 {
	  font-size: 6rem!important;
	}
	p.lead{
	font-size: 2rem!important;
	margin-top: 40px!important;
	}
}