body {
	background-color: #f4f4f4;
}

.splash {
	margin-top: 130px;
	width: 50%;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

splash .text {
	width: 100%;
	position: center;
}

.text img {
	width: 100%;
}

.logo {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

.splash .logo img {
	width: 100%;
	-webkit-animation: spin 2s linear infinite;
	-moz-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}
@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
