/**
 * Pixeltouch CSS
 */

html, body {
	height: 100%;
	min-height: 320px;
	background: #f3f7f8;
	font-family: 'Lato', 'sans-serif';
	background: -webkit-radial-gradient(center, circle cover, #f6f9fa 0%, #f3f7f8 90%);
	background: -moz-radial-gradient(center, circle cover, #f6f9fa 0%, #f3f7f8 90%);
	background: -ms-radial-gradient(center, circle cover, #f6f9fa 0%, #f3f7f8 90%);
	background: -o-radial-gradient(center, circle cover, #f6f9fa 0%, #f3f7f8 90%);
	background: radial-gradient(circle at center, #f6f9fa 0%, #f3f7f8 90%);
	text-rendering: geometricPrecision;
}
div.wrap {
	min-height: 100%;
	margin: 0 auto -70px;
}
canvas#pixels {
	position: absolute;
	width: 100%;
	z-index: 0;
}
section img {
	position: absolute;
	width: 200px;
	top: 50%;
	left: 50%;
	margin-left: -100px;
	margin-top: -100px;
	z-index: 3;
}
section nav {
	position: absolute;
	width: 400px;
	top: 50%;
	left: 50%;
	margin-left: -200px;
	margin-top: -8px;
	z-index: 2;
	}
	section nav span {
		opacity: 0.6;
		color: #41443f;
	}
	section nav span:hover {
		opacity: 1;
	}

footer, .push {
	height: 70px;
}
footer {
	position: relative;
	max-width: 540px;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	color: #c8cccb;
	}
	footer .social {
		padding-top: 20px;
		margin-bottom: 6px;
		}
		footer .social a {
			display: inline-block;
			margin: 0 26px 0 26px;
			color: inherit;
		}
		footer .social a:hover {
			color: #41443f;
		}
	footer nav {
		font-weight: 400;
		font-size: 12px;
		letter-spacing: 0.2em;
		text-transform: uppercase;
		margin-left: 2px;
		}
		footer nav a {
			text-decoration: none;
			color: inherit;
		}
		footer nav a:hover {
			color: #ef6660;
		}

.float-left { float: left; }
.float-right { float: right; }
.clear:after, .clear:before { display: table; content: ''; }
.clear:after { clear: both; }