/*
Theme Name:  twentyFourChild
Theme URL:   http://localhost/rahel
Description: Write here theme description.
Author:      gw
Author URL:  http://localhost/rahel
Template:    twentytwentyfour
Version:     1.0.0
*/

body {
	background-color: #860a11;
	min-width: 1330px;
	max-width: 1600px;
}
.pgTitle {
	text-align: center;
}
.pgTitletxt {
	display: inline-block;
  	font-size: 2em;
	color: #eee;
	padding-top: 1em;
}

.fpcontainer {
	width:   100%;
	height: 900px;
	padding-bottom: 50px;
}
.fpGrid {
	display: grid;
	height: 900px;
	margin: 2%;
	gap: 3vw;
	grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr);
	grid-template-rows: auto;
	grid-template-areas: 
		'logo bildNM'
		'center center'
		'footli footre'
		;
}
.logo, .bildNM, .footli, .footre, .center {
	border-radius: 1vw;
	box-shadow: 0 0 0.5em 0.5em rgba(0, 0, 0, 0.1);
	padding: 5px; 
}

.logo {
	grid-area: logo;
	background-color: #8a8887;
}
.logo img {
	width: 100%;
}
.bildNM {
	grid-area: bildNM;
	color: #1e1f23;
	background-color: #8a8887;
}
.bildNM img {
	width: 100%;
}
.center {
	grid-area: center;
	background-color: #8a8887;
}
.center img {
	width: 100%;
}

.footli {
	grid-area: footli;
}
.footre {
	grid-area: footre;
}
.footli, .footre{
	color: #1e1f23;	
	background-color: #8a8887;
	padding-left: 50px;
}
.menu {
	font-size: 2em;
}



