/* global positioning */

* {
	margin:0;
	padding:0;
}



/* mobile first */

#body, #body * {
	border:!px solid red;
}
#body { /* footer is fixed */
	margin:3% 1% 10% 1%;
}
#body .row {
	width:auto;
	overflow:auto;
	margin:0 0 4% 0;
}
#body .starter {
	padding:.5%;
}
#body .starter p {
	margin:2% 0;
}
#body .imager {
	padding:.5%;
}
#body .imager .image {
	width:30.0%;
	float:left;
	margin:0 2.5% 2.5% 0;
}
#body .imager .image h2 {
	height:32px;
	overflow:hidden;
	transition:height 1s ease-in-out 1s;
}
#body .imager .image:hover h2 {
	height:0;
	overflow:hidden;
	transition:height .5s ease-in-out 0s;
}
#body .imager .image h3 {
	height:0;
	overflow:hidden;
	opacity:0;
	transition:height 1s ease-in-out 1s, opacity 1s ease-in-out 0s;
}
#body .imager .image:hover h3 {
	height:32px;
	overflow:hidden;
	opacity:1;
	transition:height .5s ease-in-out 0s, opacity .5s ease-in-out .5s;
}
#body .imager .image h2 span, #body .imager .image h3 span { /* padding that will be affected by transition; padding would remain in parent element */
	display:block;
	padding:5px 7px;
}
#body .imager .image p a img {
	display:block;
	width:100%;
	height:auto;
}

#foot, #foot * {}
#foot {
	position:fixed;
	bottom:0;
	width:100%;
}
#foot p {
	width:100%;
	margin:0 auto;
	padding:10px;
}
#foot p .bull {
	padding:5px;
}
#foot form input.email, #foot form input.message, #foot form input.submit {
	margin-left:5px;
}
#foot form input.email, #foot form input.message {
	padding:5px;
}
#foot form input.submit {
	padding:3px;
}
#foot .spam:after{
	content:"linse@lumity.de";
}



/* responsive */

@media screen and (min-width: 65em){

	.starter {
		float:left;
		width:20%;
		margin-right:2%;
	}
	
	.imager {
		width:75%;
		overflow:auto;
	}

}



/* global eyecandy */

* {
	font-family:'Oxygen', Verdana;
}
body {
	background-image: radial-gradient(circle farthest-corner, #b5feff, #d4f58b);
	background-attachment:fixed;
}
a {
	color:#458bff;
}
img {
	border:0;
}



/* local eyecandy */

.starter h1 {
	font-size:1.3em;
	line-height:1.5em;
	font-weight:bold;
}
.starter p {
	font-size:0.9em;
	line-height:1.5em;
	color:#333;
}

.imager .image {
	background-color:#fff;
	box-shadow:0px 0px 8px -2px #000;
}
.imager .image h2 {
	font-size:.85em;
	font-weight:bold;
	color:#395;
}
.imager .image h3 {
	font-size:0.55em;
	font-weight:normal;
	color:#666;
}
.imager .image p {
	background:url(dunkelkammer/dummy.png);
	background-size:100% auto;
	text-align:center;
}
.imager .image p a img {
	opacity: 0;
	transition: opacity .5s ease-in;
}

#foot, #foot * {}
#foot {
	background-color:#000;
}
#foot p {
	color:#fff;
	text-align:center;
	line-height:25px;
}
#foot p .bull {
	padding:5px;
}
#foot form input.email, #foot form input.message, #foot form input.submit {
	margin-left:5px;
}
#foot form input.email, #foot form input.message {
	border:0;
	background-color:#555;
	color:#fff;
}
#foot form input.submit {
	padding:3px;
}
#foot .emailsendsuccessfully {
	color:#61de48;
}



/* debug */

#body .row {
	border:!1px solid red;
}
#body .starter {
	border:!1px solid blue;
}
#body .imager {
	border:!1px solid green;
}