A:link { color: #000000; text-decoration : none; }
A:visited { color: #000000; text-decoration : none; }
A:active { color: #000000; text-decoration : none; }
A:hover{TEXT-DECORATION:none; COLOR: #B40404}
html { height:100%; }
body { min-height:101%; }










figure,
figcaption {
	margin: 0;
	padding: 0;
}

figure.einzel {
	overflow: hidden;
	position: relative;
	display: inline-block;
	width: 100%;
}

figure img {
	width: 100%;
	display: block;
}

figcaption {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	line-height: 3em;
	color: white;
	background: rgba(0, 0, 0, 0.5);
}

figcaption {
	position: absolute;
	bottom: -3em;
	/* gilt für das erste (linke) Beispiel */
	
	text-align: center;
	line-height: 3em;
	white-space: nowrap;
	color: white;
	background: rgba(0, 0, 0, 0);
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}



figure:hover figcaption {
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
}
/* das Fragezeichen als Pseudo-Element */

figure:before {
	content: "";
	position: absolute;
	bottom: 1em;
	left: 1em;
	background: rgba(255, 255, 255, 0.5);
	color: black;
	width: 1.5em;
	height: 1.5em;
	border-radius: 1em;
	text-align: center;
	font-size: 1.5em;
	line-height: 1.5em;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}

figure:hover:before {
	background: rgba(255, 255, 255, 0);
	color: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 800px) {
	body {
		width: 100%;
		margin: 2% 0;
		padding: 1%;
	}
	figure.einzel {
		width: 48%;
	}
}

@media only screen and (max-width: 600px) {
	figure.einzel {
		width: 100%;
	}
}
