* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: Arial,Helvetica,sans-serif;
}

.header .container, .footer .container {
	display: table;
	margin: auto;
}

.header {
	text-align: center;
	padding-top: 5vh;
}

.header p {
	font-size: 1.75em;
	color: #fff;
	text-shadow: 0 0 5px #000;
}

.header {
	position: relative;
}

.header .mute-unmute {
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
}

#pauseBtn {
	display: none;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, .6);
	font-size: .75em;
}

.footer .container > div {
	display: table-cell;
	padding: 10px 20px;
	vertical-align: middle;
}

.social a {
	margin: 0 5px;
}


.video-background {
	background: #000;
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: -99;
}
.video-foreground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
	.video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
	.video-foreground { width: 300%; left: -100%; }
}

@media all and (max-width: 500px) {
	.header img {
		width: 75%;
	}

	.header p {
		font-size: 1.25em;
	}

	.footer .container > div {
		display: block;
		padding: 5px 20px;
		text-align: center;
	}
}