body {
	background-color: #007DB9;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	color: white !important;
}
p {
	font-size: 1.3em !important;
}
h2 {
	font-size: 2.3em !important;
	color: white !important;
}
p, h2, button {
	font-family: 'Roboto' , sans-serif !important;
	text-align: center;
}
.centered {
	display: block;
	margin: 0 auto;
}
.info{
	display: inline-block;
}
.description {
	margin-top: 10%;
}
.mockup {
	margin-top: 6%;
	padding-left: 100px;
}

.sun{
	margin: 0 auto;
	display: block;
	padding-bottom: 5px;
	-webkit-animation: spin1 4s infinite linear;
	-moz-animation: spin1 4s infinite linear;
	-o-animation: spin1 4s infinite linear;
	-ms-animation: spin1 4s infinite linear;
	animation: spin1 4s infinite linear;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

@-webkit-keyframes spin1 {
	0% { -webkit-transform: rotate(0deg);}
	100% { -webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin1 {
	0% { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg);}
}
@-o-keyframes spin1 {
	0% { -o-transform: rotate(0deg);}
	100% { -o-transform: rotate(360deg);}
}
@-ms-keyframes spin1 {
	0% { -ms-transform: rotate(0deg);}
	100% { -ms-transform: rotate(360deg);}
}
@-keyframes spin1 {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg);}
} 

::-webkit-input-placeholder { font-family: 'Roboto' , sans-serif !important; }
::-moz-placeholder { font-family: 'Roboto' , sans-serif !important; } /* firefox 19+ */
:-ms-input-placeholder { font-family: 'Roboto' , sans-serif !important; } /* ie */
input:-moz-placeholder { font-family: 'Roboto' , sans-serif !important; }

@media only screen and (max-width: 64em) {
	h2 {
		padding-top: 20px;
	}
	p {
		font-size: 1.1em;
		text-align: justify;
	}
	.description {
		margin-top: 0;
	}
	.mockup {
		padding-left: 0;
	}
	.mockup img{
		margin: 0 auto;
		display: block;
		padding-bottom: 20px;
	}
	form{
		width: 208px;
		display: block;
		position:relative;
		margin:0 auto;
		left:-25px;
	}
	input[type="submit"] {
		width: 250px;
	}
}