body {
	margin: 0;
	font-family: sans-serif;
	background-color: #9caebc;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background-image: linear-gradient(to right bottom, #8b99a4, #99a6b0, #a7b3bc, #b5c0c8, #c3cdd4);
	background-size: 300% 300%;
    animation: gradient-wave 5s ease infinite;
}
.container {
	text-align: center;
}
.logo {
	width: 33vw;
	margin-bottom: 1rem;
	margin-top: -10rem;
}
.teaser {
	font-size: 2rem;
	color: #555;
	font-family: "Orbitron", sans-serif;
	font-weight: 700;
	font-style: normal;
}

@keyframes gradient-wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
