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;
}

head2 {
	font-size:   26px;
	font-weight: bold;
	color: black;
}

head3 {
	text-align:  center;
	font-size:   24px;
	font-weight: bold;
}

.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: #8F5250;
	color: white;
	padding: 10px;
	text-align: center;
	font-size:   90px;
	vertical-align: text-top;
	
	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:   20px;

	
	/*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;

}


.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;
}