html{
	height: 100%;
}

body {
	margin: 0;
	width: 100%;
	height: 100vh;
	font-family: "Exo", sans-serif;
	color: #fff;
	/*background: linear-gradient(-45deg, #b147fc, #4a00c4, #417ed7);*/
	background: linear-gradient(-45deg, #ffe200, #de0b51, #140166);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.container {
	width: 100%;
	position: absolute;
	top: 50%;
	text-align: center;
}