body {
	background: linear-gradient(-45deg, #f5c0b0, #eea2c0, #23a6d5, #23d5ab);
	background-size: 300% 300%;
	animation: gradient 10s ease infinite;
	height: 100vh;
	overflow: hidden;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.wrapper {
	display: flex;
	width: 100vw;
	height: 100vh;
	text-align: center;
}

.item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}