@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');


body {
	font-family: 'Lato';
	line-height: 1.1em ;
	letter-spacing: 1px;
	background: #0070f7; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #0070f7 0%, #6eb0ff 73%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #0070f7 0%,#6eb0ff 73%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #0070f7 0%,#6eb0ff 73%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0070f7', endColorstr='#6eb0ff',GradientType=1 ); 
}
.home { 
	display: table;
	height: 100vh;
	width: 100%;

}
.content-home {
	
	display: table-cell;
	color: #fff;
	text-align: center;
	vertical-align: middle
}
.content-home img {
	max-width: 320px;
	width: 100%;
	margin-bottom: 40px;
}
.content-home h1 {
	font-size: 55px;
	font-weight: 200;

}
.content-home h2 {
	font-size: 25px;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 40px;
}
.content-home a {
	color: #fff;
	text-decoration:none;
	font-size: 18px;
	font-weight: 300;
	border-bottom: 1px solid #fff;
	padding-bottom: 3px;
	transition: 0.4s;
}
.content-home a:hover {
	color: #056bd1;
	transition: 0.4s;
	border-color: #056bd1;
}
@media screen and (max-width 480px) {
	.content-home img {
		max-width: 150px;
	}
	.content-home h1 {
		font-size: 45px;
	}
}