html {
	height: 100%;
}

body {
	padding: 0;
	margin: 0;
	min-height: 100%;
	font-family: 'Montserrat', sans-serif;
	background-color: black;
}

#container {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	z-index: 1;
}

#background {
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: url('');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 2;
}

#background-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 3;
}

#header-container {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 40%;
	z-index: 4;
}

#logo {
	width: 250px;
	height: 250px;
	position: relative;
	left: calc(50% - 125px);
	background-image: url('../img/logo.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 250px;
	display: inline-block;
}

#text {
	position: relative;
	width: 100%;
	line-height: 100px;
	text-align: center;
	color: white;
	font-weight: 400;
	font-size: 35px;
}

#footer {
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 4;
	height: auto;
}

#ad {
	position: relative;
	right: 0;
	width: auto;
	float: right;
}

#ad-text {
	color: white;
	margin: 0 4px;
	line-height: 50px;
	padding: 0;
	width: auto;
	position: relative;
	float: left;
}

#ad-text p {
	margin: 0;
	padding: 0;
	color: white;
	text-transform: capitalize;
}

#logo-stan {
	margin-top: auto;
	position: relative;
	float: left;
	width: 50px;
	height: 50px;
	background-image: url('../img/logo-white.svg');
	background-size: 25px;
	margin: 0 25px 0 0;
	background-position: center;
	background-repeat: no-repeat;
	background-color: transparent;
}

#logo-stan a {
	width: auto;
	height: auto;
	padding: 0;
}

#background {
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   pointer-events: none;
   overflow: hidden;
}
#background iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}