@charset "ISO-8859-1";

/*Formatierungen für Texte:*/
/*Farben: Dunkelrot: #aa0000;*/


@media screen and (max-width: 99999px) { /*Auflösung für grosse Bildschirme*/

	div.foto_frame {	
		float: left;
		width: 320px;
		height: auto;
		margin-right: 10px;
		margin-bottom: 10px;
		opacity: 1;
		transition: 1s opacity;
	}
	div.foto_frame:hover {
		opacity: 0.5;
		transition: 1s opacity;
	}
	
}

@media screen and (orientation: portrait), (max-width: 1000px) { /*Auflösung für Smartphone-Bildschirme*/

	div.foto_frame {
		float: none;
		width: 100%;
		height: auto;
		margin-right: 0px;
		margin-bottom: 20px;
	}
}