body {
	background: linear-gradient(-45deg, #4e42f5, #8742f5, #b342f5, #dd42f5);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    width: 100vw;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 5vw;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
