html, body{
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
}
.lander{
	position: relative;
	min-height: 45rem;
	height: 100svh;
	width: 100%;
	background-image: url(bilder/start.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
}
.midbox{
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
	gap: 3rem;
}
.logo{
	width: 25rem;
}
.textbox{
	text-align: center;
	font-size: 1.2rem;
	color: white;
	width: max(60vw, 40rem);
	display: flex;
	justify-content: center;
	justify-items: center;
	align-items: center;
	flex-direction: column;
}
.texttop{
	font-weight: 600;
}
.loadingbar{
	width: clamp(20rem,80vw,40rem);
}
.footertext{
	font-size: 1rem;
	color: white;
	position: absolute;
	bottom: 10px;
	left: auto;
	right: auto;
}
.handy{
	display: none;
}

@media only screen and (max-width: 800px) {
	.textbox{
		width: 90vw;
		font-size: .9rem;
	}
	.footertext{
		font-size: .8rem;
	}
	.logo{
		width: clamp(20rem,60vw,25rem);
	}
}
@media only screen and (max-width: 550px) {
	/*.midbox{
		gap: 1rem;
	}*/
}