html, body { 
	text-align: center; 
	width: 100%; 
	margin: 0px 0px 0px 0px; /*Seitenabstand von oben*/
	background-color: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
}

html.index {
	height:100%;
}
html.index body {
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	
	background-image:url('../gfx/jutho-heaven.jpg');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	
	font-family:Arial, Helvetica, sans-serif;
}

.jutho-logo {
	width:30rem;
	max-width:90vw;
}
.jutho-logo img {
	object-fit:contain;
	object-position:center center;
	width:100%;
	height:100%;
}

/*Hintergrundbild*/

#container {
	width:1600px;
	max-width:100%;
	margin:auto;
	display:flex;
	flex-direction:flex-start;
	justify-content:center;
	flex-wrap:wrap;
}

#container .mockup {
	display:block;
	margin:1rem 2rem;
	flex-basis:20%;
	height:25vh;
	flex-shrink:0;
	background-repeat: no-repeat;
	background-position: top center;
	background-size:cover;
	overflow:hidden;
	position:relative;
	border:1px solid #83674A;
}
#container .mockup[data-name]::after {
	box-sizing:border-box;
	content:attr(data-name);
	display:block;
	width:100%;
	position:absolute;
	bottom:0;
	left:0;
	font-size:1rem;
	padding:0.5rem;
	background-color:#83674A;
	color:white;
	font-family:Arial, Helvetica, sans-serif;
	opacity:0.95;
	font-weight:600;
}
#container .mockup[data-tag]::before {
	box-sizing:border-box;
	content:attr(data-tag);
	display:block;
	position:absolute;
	top:0;
	right: 0;
	font-size: 13px;
	padding: 4px 0;
	background-color:#801757;
	color:white;
	font-family:Arial, Helvetica, sans-serif;
	opacity:0.85;
	font-weight:600;
	z-index: 1;
	transform: rotate(45deg);
	transform-origin: 40% 225%;
	width: 8rem;
	text-align: center;
	text-transform: uppercase;
}	

