/* CSS Document */

body {
	height: 100%;
	margin: 0px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	height: 90px;
	background-color: #463979;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.menue {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 30px 0 0;
}

.logo {
	height: 90px;
	padding: 0 30px;
}

nav {
	height: 100%;
}

nav ul {
	display: flex;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}

nav li {
	height: 100%;
	position: relative;
}

nav a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 30px;
	color: white;
	text-decoration: none;
	font-family: Montserrat, sans-serif;
	transition: 0.3s;
}

nav a:hover {
	background: #aaaae0;
	color: #463979;
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #463979;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	height: auto;
	z-index: 1000;
}

.dropdown:hover .submenu {
	display: block;
}

.submenu li {
	height: auto;
	width: 100%;
}
.submenu a {
	padding: 10px 20px;
	display: block;
	height: auto;
	white-space: nowrap;
}

.submenu li a:hover {
	background: #aaaae0;
	color: #463979;
}

main {
	flex: 1;
	font-family: Montserrat, sans-serif;
	margin: 90px auto 0 auto;
}
main h1 {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 10px;
	font-size: 32px;
	font-weight: 500;
	color: #463979;
	text-decoration: none;
}

main h1 a {
	text-decoration: none;
	color: #463979;
}

main h1 a:hover{
	color: #aaaae0;
}

.startbox {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 40px;
}

.willkommen {
	font-size: 26px;
	font-weight: 400;
	margin-top: 50px;
	color: #463979;
}

.lucem {
	font-size: 90px;
	font-weight: 700;
	color: #463979;
	letter-spacing: 2px;
}

.cta {
	display: inline-block;
	margin-top: 25px;
	padding: 14px 32px;
	background: #463979;
	color: white;
	text-decoration: none;
	border-radius: 40px;
	font-family: Montserrat, sans-serif;
	transition: 0.3s;
}

.cta:hover {
	background: #aaaae0;
	color: #463979;
}

.subtitle {
	max-width: 500px;
	margin: 20px auto;
	font-size: 18px;
	line-height: 1.6;
	color: #463979;
}

.infotext {
	max-width: 750px;
	margin: 40px auto 0 auto;
	text-align: left;
	padding: 30px 35px;

	background: rgba(255, 255, 255, 0.4);
	border-radius: 20px;
}

main p {
	font-size: 16px;
	line-height: 1.2;
	color: #111;
}

footer {
	height: 40px;
	background-color: #463979;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

footer ul {
	display: flex;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0 30px;
}

footer a,footer p {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 30px;
	color: white;
	text-decoration: none;
	font-family: Montserrat, sans-serif;
}

footer li a:hover {
	color:#aaaae0;
}


.background {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;

	background: radial-gradient(circle at 30% 30%, #a99ae6, transparent 50%),
	            radial-gradient(circle at 70% 60%, #6f5bd6, transparent 55%),
	            radial-gradient(circle at 50% 80%, #4b2fbf, transparent 60%);

	filter: blur(60px);
	opacity: 0.6;

	animation: moveBackground 20s ease-in-out infinite;
}

@keyframes moveBackground {
	0% {
		transform: translate(0, 0) scale(1.1);
	}
	50% {
		transform: translate(-30px, 20px) scale(1.15);
	}
	100% {
		transform: translate(0, 0) scale(1.1);
	}
}
