body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #D9CDB5;
	

}

head1 {
	text-align:  center;
	font-size:   30px;
	font-weight: bold;
}

head50 {
	text-align:  center;
	font-size:   50px;
	font-weight: bold;
}

.openT {
	font-weight: bold;
	color:       darkgreen;
}

head2 {
	font-size:   26px;
	font-weight: bold;
	color: black;
}

.head2 {
	font-size:   26px;
	font-weight: bold;
	color: black;
}

li {
	margin-top: 12px;
}

head3 {
	text-align:  center;
	font-size:   24px;
	font-weight: bold;
}

.smallBoxFre {
	background: #DFFF00;
	border-radius:	3px 3px;
}

.smallBoxFrg {
	background: #AFE1AF;
	border-radius:	3px 3px;
}

.smallBoxFr2 {
	background: #8FD12F;
	border-radius:	3px 3px;
}


.smallBoxFrB {
	background-image: linear-gradient(135deg, #AFE1AF 50%, #8FD12F 50%);
	border-radius:	3px 3px;
}

.smallBoxBlk {
	background: #DAA520;
	border-radius:	3px 3px;
}



.content1 {
	font-size:   20px;
}

.content24 {
	font-size:   24px;
}

.container {
	display: grid;
	grid-template-areas:
    "header header header"
    "sidebar content content"
    "sidebar footer-left footer-right";
	grid-template-columns: 1fr 1fr 4fr;
	grid-template-rows: 1fr 12fr 1fr;
	gap: 10px;
	padding: 20px;
	padding-left: 5%;
	padding-right: 5%;
	height: 150%;
	box-sizing: border-box;
	border-radius:	20px 20px;
}

.header {
	grid-area: header;
	background: #864b60;
	color: white;
	padding: 10px;
	text-align: center;
	font-size:   90px;
	
	font-weight: bold;
	font-style:  italic;
	border-radius:	20px 20px;
}

.sidebar {
	text-align: center;
	grid-area: sidebar;
	background: #fff;
	padding: 10px;
	margin: 5px;
	margin-left: 0px;
	border-radius:	20px 20px;
}

.content {
	grid-area: content;
	background: #fff;
	padding: 10px;
	color: #333;
	margin: 5px;
	margin-right: 0px;

	font-size:   44px;

	
	/*Bild im Hintergrund*/
	/*
	background-image: url('silhouette.png'); 
	background-repeat: no-repeat;
	background-position: left bottom; 
	background-size: 40%; 
	background-blend-mode: darken; 
	*/
	
	border-radius:	20px 20px;

}


.anmeldung {
	background: #fff;
	padding: 10px;
	color: #333;
	margin: 5px;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 5%;
	font-size:   44px;
	width: 80%;
	
	border-radius:	20px 20px;

}

.center {
	text-align: center;
}

.footer-left {
	grid-area: footer-left;
	background: #80614D;
	color: white;
	padding: 10px;
	text-align: center;
	border-radius:	20px 20px;
}

.footer-right {
	grid-area: footer-right;
	background: #8F5250;
	color: white;
	padding: 10px;
	text-align: center;
	border-radius:	20px 20px;
}

.popup {
  display: none; /* Zuerst versteckt */
  position: fixed; /* Bleibt sichtbar beim Scrollen */
  z-index: 1000; /* Über allem anderen */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* Halbtransparenter Hintergrund */
}
.popup-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  border-radius: 5px;
}

