body, html {
	margin: 0px;
	padding: 0px;	
	height: 100%;
	font-family: Georgia,Times,Times New Roman,serif; 
	font-style: italic;
}

html {
	background-image: url(../panorama.jpg);
	background-attachment: fixed;
	background-position: top left;
	background-repeat: no-repeat;
	background-size: auto 100%;
	text-align: center;
	animation: verschieben 50s linear infinite;
}

h1, h2 {
	color: white;
	text-shadow: 1px 1px 1px #000;	
}

h3 {
	margin-top: 0px;
	margin-bottom: 10px;
	padding: 0px;	
}

#auswahl {
	z-index: 0;	
}

#auswahl figure {
	text-align: left;
	max-width: 600px;
	min-height: 190px;
	padding: 20px;
	margin: 20px auto;
	background-color: rgba(255,255,255,0.7);
	color: black;
	transition: background-color 0.5s;
}

#auswahl figure:hover {
	cursor: pointer;
	background-color: rgba(180,220,225,0.8);
}

#auswahl figure img {
	float: left;
	margin-right: 15px;
}

#auswahl figcaption {
	font-size: 1.1em;
	line-height: 1.5;
}

#pics {
	display: none;	
}



@keyframes verschieben {
	0%, 1%, 99%, 100% {
		background-position: top left;	
		
	}
	49%, 51% {
		background-position: top right;
		
	}
}

@media screen and (max-width: 600px) {
	#auswahl figure {
		text-align: center;	
	}
	
	#auswahl figure img {
		float: none;
		display: inline-block;
		margin-right: 0px;
	}
	
	h3 {
		margin-top: 10px;	
	}
}