body {
	font-family: 'Poppins', Arial, sans-serif;
	line-height: 1.6;
	text-align: center;
	background-image: url(img/rosalie-3.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #000000;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	padding: 60px;
	position: relative;
	overflow-x: hidden;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	background: rgba(255,255,255,0.55); /* Weißer, halbtransparenter Overlay */
	pointer-events: none;
}
.container {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.95);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	color: #333;
	position: relative;
	z-index: 1;
}
h1 {
	font-size: 24px;
	color: #222;
	margin-bottom: 15px;
}
h2 {
	font-size: 20px;
	color: #444;
	margin-bottom: 10px;
}
h3 {
	font-size: 16px;
	color: #444;
	margin-bottom: 5px;
}
.buch-cover {
	max-width: 100%;
	border-radius: 10px;
}
.coming-soon {
	font-size: 1.2em;
	font-weight: bold;
	color: #7b4397;
	margin-top: 20px;
}
.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
	padding: 10px 0;
	display: block;
}
.menu a {
	margin: 0 10px;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}
.to-top, .submit-button, .captcha-button {
	background: #f2dfbc;
	color: #6E3728;
	padding: 10px;
	border-radius: 5px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	display: inline-block;
}
.captcha-button {
	font-family: Courier-New;
	font-size: 0.8em;
}
.to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
}
table {
	width: 100%;
}
td {
	padding: 10px;
	text-align: left;
}
input, textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
}