@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap');

html, body {
	margin: 0px;
	font-family: 'Roboto Mono', monospace;
	scroll-behavior: smooth;
	overflow: hidden;

}

.backgroundimage {
	min-width: 100%;
	min-height: 100%;
	position: fixed;
	top:0px;
	z-index: -100000;
}

a {
	text-decoration: none;
	color: #000;
}

#bgkVideo {
	position: fixed;
	
	min-width: 100%;
	min-height: 100%;
	z-index: -5;
}

.effekt {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: -4;
	width: 100%;
}

.header {
	text-align: center;
	padding: 30px 10px 10px 10px;
	height: 100%;
}

.shader {
	background: rgba(5,5,5, 0.9);
	backdrop-filter: blur(10px);
	box-shadow:   #000 0px -70px 130px;

}

.content {
	width: 90%;
	max-width: 1000px;
	text-align: right;
	padding: 10px;
	margin: 0px 0px 10px 0px;

}

.footer {
	width: 100%;
	position: fixed;
	bottom: 0px;
	text-align: left;
	color: #fff;
	font-size: 12px;
}

.logo {
	width: 40%;
	max-width: 120px;
	margin: 100px 0px 0px 0px;
}

.title, .subtitle, h2 {
	font-weight: bold;
	color: #fff;
	text-shadow: 0px 0px 10px #000;
}

.title {
	font-size: 70px;
}

.subtitle, h2 {
	font-size: 40px;

}

.button {
	padding: 15px;
	border-radius: 10px;
	background-color: #fff;
	display: inline;
}

.icon {
	margin: -3px;
}

.vorschaubild {
	max-width: 90%;

}

@media screen and (max-width: 700px) {
	.title {
		font-size: 50px;
	}
	
	.button {
		display: auto;
	}

	.header {
		min-height: 100%;
}

	.logo {
		margin: 0px;
	}

}