@charset "UTF-8";

* {
	font-family: "BigCaslon", serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin-top: 5px;
	margin-left: 0;
	margin-right: 0;
	-webkit-font-smoothing: antialiased;
}

.headertitel {
	text-align: center;
	font-size: 2em;
	transition: all 0.3s ease;
}

.headertitel:hover {
	color: rgb(255, 0, 115);
	cursor: ns-resize;
}

.test {
	position: relative;
	display: inline;
	padding: 3px 13px 5px 12px;
	text-align: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 40px;
}

.about-style {
	position: relative;
	margin-top: 20px;
	padding: 5px 10px;
	text-align: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #000;
	background-color: transparent;
	border-radius: 40px;
	font-size: 2em;
	line-height: 1em;
}

.contentBx2 {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50px;
	z-index: 1000;
	overflow: hidden;
	transition: height 0.5s ease;
}

.contentBx2.active2 {
	height: 90vh;
	overflow-y: auto;
}

.preorder-panel {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1100;
	padding: 24px;
	background: rgba(255, 255, 255, 0.92);
	overflow-y: auto;
}

.preorder-panel.is-open {
	display: block;
}

.preorder-content {
	position: relative;
	width: calc(100% - 40px);
	margin: 10px auto 0;
	padding: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 40px;
	text-align: center;
	font-size: 2em;
}

.preorder-content h2 {
	font-size: inherit;
	margin-bottom: 12px;
}

.preorder-content p {
	margin-bottom: 12px;
	line-height: 1.3;
}

.preorder-close {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	background: transparent;
	font-size: 32px;
	cursor: pointer;
}

.preorder-content form {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}.preorder-content {
  width: calc(100% - 0px);
  margin: 10px auto 0;
}

.preorder-content label {
	display: grid;
	gap: 5px;
}

.preorder-content input,
.preorder-content textarea {
	width: 100%;
	resize: none;
	border: 0;
	border-bottom: 1px dotted #fff;
	background: transparent;
	color: #fff;
	padding: 8px 0;
	font: inherit;
}

.preorder-content form button {
	width: fit-content;
	justify-self: center;
	border: 1px solid #fff;
	background: transparent;
	color: #fff;
	border-radius: 40px;
	padding: 8px 14px;
	font: inherit;
	cursor: pointer;
}

a {
	color: rgb(255, 0, 115);
	text-decoration: none;
}

a:hover {
	color: white;
	transition: all 0.3s cubic-bezier(0.3, 0.3, 0.7, 0.1);
}

@media (max-width: 500px) {
	.contentBx2 {
		font-size: 12px;
	}
}