html,
body {
	height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
    font-family: 'Crimson Text', serif;
}
h1{
    font-weight: normal;
    text-transform: uppercase;
    margin: 0.5em;
    font-size: 1.8em;
}
h2 {
	font-weight: normal;
	text-transform: uppercase;
	margin: 0.5em;
	font-size: 1.3em;
}
.video-wrapper {
    /* Telling our absolute positioned video to 
    be relative to this element */
    position: relative;
  
    width: auto;
    height: 100%;
    min-height: 100%;
  
    /* Will not allow the video to overflow the 
    container */
    overflow: hidden;
  
    /* Centering the container's content vertically 
    and horizontally */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  video {
    /** Simulationg background-size: cover */
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header {
	height: 100%;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}
.logo {
	max-width: 500px;
	width: 80%;
	margin: 0 auto;
}
.logo img{
    width: 100%;
    height: auto;
    display: block;
}