html, body {
	margin: 0;
	padding: 0;
	border: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	background: #000;
}

body {
	position: relative;
	background: url('../images/bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.logo {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.logo img {
	max-width: 20vw;
	max-height: 50vh;
}

#img-container {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: .33;
	width: 100vw;
	height: 100vh;
	min-width: 100%;
	min-height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}