body,
html {
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Inter', sans-serif;
	line-height: 1.5;
}

* {
	box-sizing: border-box;
}

div.bg {
	background-image: url("../images/bg.jpg");
	filter: blur(10px);
	-webkit-filter: blur(10px);
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-width: 100vw;
	position: fixed;
	transform: scale(1.1);
}

div.content {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	min-height: 100vh;
	flex-direction: column;
	min-width: 100vw;
	text-align: center;
}

.content>img {
	max-width: 5.5rem;
	height: auto;
}

.maintenance {
	padding: 1rem 2rem;
	margin-top: 3rem;
	background: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	border-radius: 3rem;
	margin-left: 1rem;
	margin-right: 1rem;
}

#privacy-link {
	padding: 0.4rem 1.25rem;
	background: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	border-radius: 3rem;
	right: 10rem;
	bottom: 1rem;
	position: fixed;
	cursor: pointer;
	font-size: 0.9rem;
}

#imprint-link {
	padding: 0.4rem 1.25rem;
	background: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	border-radius: 3rem;
	right: 2rem;
	bottom: 1rem;
	position: fixed;
	cursor: pointer;
	font-size: 0.9rem;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 5%;
	padding-bottom: 5%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border-radius: 2rem;
	min-width: 300px;
	width: 50%;
	max-width: 90%;
	position: relative;
	text-align: left;
}

/* media query max-width: 600px */
@media only screen and (max-width: 600px) {
	.modal-content {
		width: 90%;
	}
}

.close-modal {
	color: #aaaaaa;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 5px;
	right: 25px;
}

.close-modal:hover,
.close-modal:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

.modal-content .content-wrapper {
	padding: 10px 30px;
}

.qstamper {
	position: absolute;
	padding: 0.75rem 1.5rem;
	top: 1rem;
	background: rgba(255, 255, 255, 0.65);
	font-size: 0.75rem;
	border-radius: 3rem;
	margin-left: 1rem;
	margin-right: 1rem;
}


.qstamper a {
	color: #000;
	text-decoration: none;
}

#matomo-opt-out label>strong {
	font-weight: 500;
	font-size: 15px;
	padding-left: 10px;
	padding-right: 20px;
	position: absolute;
}