@-webkit-keyframes lights-on {
	from {
		margin-left: -100%;
	}
}

@keyframes lights-on {
	from {
		margin-left: -100%;
	}
}

@viewport {
	width: device-width;
}

body {
	color: #fff;
	/* http://xpt.sourceforge.net/techdocs/misc/ce01-DarkBackgroundIsGoodForYou/ */
	background-color: #000;
	margin: 0 auto;
	/* http://baymard.com/blog/line-length-readability */
	max-width: 55em;
}

:link {
	color: #66d;
}

.brand > img {
	display: block;
	height: 100px;
	margin-bottom: -24px;
}

.brand > .name {
	display: block;
	font-size: 18px;
}

.brand:link{
	color: #fff;
	text-decoration: none;
}

.tagline {
	-webkit-animation-timing-funtion: ease-in;
	-webkit-animation: lights-on 1s;
	animation-timing-funtion: ease-in;
	animation: lights-on 1s;
}
