@charset "utf-8";
/* CSS Document */
:root {
  --main_width: 200px;
  --main_height: 120px;
}


body {
	margin:0px;
	background-color:#d1c5b7;	
	font-family:Poppins;
}


.content {
	position: absolute;
	width: 100%;
	width: calc(100% - 20px);
	height: calc(100% - 120px);
}
.main {
	
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;	
}


img.baustelle { 
	max-width:100%;
	height: auto;
	
/* vertikal zentrieren */
	position: absolute;
	top: 50%;
	margin-top: -100px; /* Hälfte der Höhe dieses Kind-Elements -img- */	
}
