/* body {
	background-image: radial-gradient(circle, #0a2579 4%, #1e294d 100%);
} */
body {
	padding: 0;
	margin: 0;
}
.bkg {
	background: linear-gradient(#0a2579, #ff9400);
	background-size: 600% 600%;
	animation: Back 15s ease infinite backwards;
	height: 100vh;
	width: 100%;
}

@keyframes Back {
	0% {
		background-position: 53% 0%;
	}
	50% {
		background-position: 48% 100%;
	}
	100% {
		background-position: 53% 0%;
	}
}
/* #4ae31d */

.center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.child {
	font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
	font-size: 69px;
	color: aliceblue;
}
/* animation: shadow 15s ease infinite backwards;
}
@keyframes shadow {
	0% {
		text-shadow: 0px 2px #0a2579;
	}
	50% {
		text-shadow: 2px 2px #0a2579;
	}
	100% {
		text-shadow: 0px 2px #0a2579;
	}
} */
