
@import "https://fonts.googleapis.com/css?family=Lato:100";

body{
	margin: 0;
	border: 0;
	padding: 0;
	box-sizing: border-box;
	
	
}

html{
	
	
	/*font-family: "Lato", Arial, "Lucida Bright", "DejaVu Serif", Georgia, "serif";*/

	
}

Section{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size:400% 400%;
	position:relative;
	animation: change 10s ease-in-out infinite;
	
		
}
.welcome{
	
	position: relative;
	text-align: center;
	font-family: sans-serif, Arial;
	
}

.welcome h1{
	font-size: 6rem;
	margin: 25px;
	letter-spacing: 1px;
	text-transform: uppercase;

	
}

.btn{
	display: inline-block;
	box-sizing: border-box;
	font-size: 2rem;
	letter-spacing: 2px;
	margin: 5px;
	padding: 8px 10px;
	text-decoration: none;
	border: 1px solid #fff;
	color: #fff;
	font-weight: thin;
}


a:hover{
	background: #FFFFFF;
	color: #E73C7E;
	
}

/*h1{
	font-size: 5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 3px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 5rem 10rem;
	
}
*/
h2{
	position: relative;
	text-align: center;
	font-family: sans-serif, Arial;
	font-weight: 100;
	font-size: 3rem;
	color: #fff;
	padding: 0;
	border: 0;

	
	
	
}
h3{
	position: relative;
	text-align: center;
	font-family: sans-serif, Arial;
	font-weight: 100;
	font-size: 1.1rem;
	vertical-align: bottom;
	color: #fff;
	opacity: 75%;
	letter-spacing: 5px;
	
	
	
}

@keyframes change{
	0%{
		background-position: 0 50%;
		
	}
	50%{
		background-position: 100% 50%;
		
	}
	100%{
		background-position: 0 50%;
		
	}
	
}