body {
	background: linear-gradient(-30deg, #8b3fac, #5332d3);
	background-size: 400% 400%;
	animation: gradient 45s ease infinite;
	height: 90vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.logo {
	color: #ffffff;
	text-align: center;
	padding-top: 10%;
	width: 100%;
	font-size: 10vw;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 700;
}

.coming-soon {
	color: #ffffff;
	text-align: center;
	padding-top: 1%;
	width: 100%;
	font-size: 3vw;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 300;
	font-style: italic;
}