/* Copyright © 2014 CYCLONIQ Bt. All rights reserved. */

html, body {
	overflow: hidden;
	height: 100%;
	padding: 0;
	color: #FFF;
	background: #012;
	font-family: Roboto, Arial, sans-serif;
}

h1 {
	display: inline-block;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 32px;
	font-weight: normal;
}

h1 > span {
	height: 2em;
	line-height: 2em;
	display: block;
	margin-top: -1em;
	margin-left: -50%;
	white-space: nowrap;
}

@keyframes pulse {
	0% { color: rgba(255,255,255,1); }
	70% { color: rgba(255,255,255,.2); }
	80% { color: rgba(255,255,255,1); }
	90% { color: rgba(255,255,255,.8); }
	100% { color: rgba(255,255,255,1); }
}

@-webkit-keyframes "pulse" {
	0% { color: rgba(255,255,255,1); }
	70% { color: rgba(255,255,255,.2); }
	80% { color: rgba(255,255,255,1); }
	90% { color: rgba(255,255,255,.8); }
	100% { color: rgba(255,255,255,1); }
}

.fa {
	display: block;
	margin-top: -1.5em;
	opacity: .8;
	font-size: 2em;
}

.fa-heart {
	-webkit-animation: pulse 1s infinite normal;
	animation: pulse 1s infinite normal;
}

.fa-heart:before {
	padding: 5px;
}

