@font-face {
	font-family: 'metro_uber_fontregular';
	src: url('../fonts/metro_uber_font-webfont.eot');
	src: url('../fonts/metro_uber_font-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/metro_uber_font-webfont.woff2') format('woff2'),
	url('../fonts/metro_uber_font-webfont.woff') format('woff'),
	url('../fonts/metro_uber_font-webfont.ttf') format('truetype'),
	url('../fonts/metro_uber_font-webfont.svg#metro_uber_fontregular') format('svg');
	font-weight: normal;
	font-style: normal;

}
@font-face {
	font-family: 'boldbold';
	src: url('../fonts/cunia-webfont.eot');
	src: url('../fonts/cunia-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/cunia-webfont.woff2') format('woff2'),
	url('../fonts/cunia-webfont.woff') format('woff'),
	url('../fonts/cunia-webfont.ttf') format('truetype'),
	url('../fonts/cunia-webfont.svg#boldbold') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
       url('../fonts/roboto-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}


html {
	width: 100%;
	height: 100%;
}
body {
	margin: 0px;
	padding: 0px;
	background: white;
	color: #222222;
	font-family: boldbold;
	width: 100%;
	height: 100%;
	text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
	color: inherit;
	text-decoration: none;
}
#mainContainer {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#backgroundImageContainer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -10;
	background: url("../img/background.png");
	background-repeat: no-repeat;
	background-position: 95% bottom;
	background-size: contain;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
}
#headline {
	font-family: metro_uber_fontregular;
	font-size: 150px;
	margin-bottom: 20px;
}
#socialMediaContainer {
	text-align: center;
}
#socialMediaTitle {
	font-size: 25px;
	margin-bottom: 7px;
}
#socialMediaIcons {
	font-size: 20px;
}
#socialMediaIcons .fa-stack {
	margin: 0px 3px;
}
#impressumContainer {
	font-size: 12px;
	position: absolute;
	bottom: 100px;
}
#spotifyPlayerContainer {
	width: 100%;
	position: absolute;
	bottom: -4px;
}
.dropWhiteShadow {
	text-shadow: 0px 0px 5px #FFFFFF;
}
#impressumTextContainer {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);

	font-family: 'Roboto', sans-serif;
	font-size: 15px;

	z-index: 30;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	position: absolute;
	flex-direction: column;
	padding: 10px;
	top: -2000px;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
}
.impressum-h1 {
	font-size: 22px;
	line-height: 1.2;
}
.impressum-h2 {
	font-size: 18px;
	line-height: 1.4;
}


#closeButton {
	width: 90%;
	max-width: 500px;
	padding: 20px;
	text-align: right;
	cursor: pointer;
	font-size: 25px;
}
#impressumText {
	max-width: 500px;
	padding: 20px;
}
#backgroundImageContainer {
	opacity: 1;
}
@media screen and (max-width: 1358px) {
	#backgroundImageContainer {
		background-position: 160% bottom;
	}
}
@media screen and (max-width: 768px) {
	#backgroundImageContainer {
		opacity: 0;
	}
}
@media screen and (min-width: 601px) {
	#headline {
		font-size: 150px;
	}
	#socialMediaTitle {
		font-size: 25px;
	}
	#socialMediaIcons {
		font-size: 20px;
	}
}
@media screen and (max-width: 600px) {
	#headline {
		font-size: 25vw;
	}
	#socialMediaTitle {
		font-size: 4.5vw;
	}
	#socialMediaIcons {
		font-size:3.5vw;
	}
}