@keyframes colorFade {
  0% { color: #ff6347; }
  33% { color: #51a35c; }
  67% { color: #6a5acd; }
  100% { color: #ff6347; }
}

body {
	background-color: #303040;
	display: flex;
}

.heading {
	color: #904040;
	justify-content: center;
	text-align: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}


.message {
	justify-content: center;
	text-align: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	animation: colorFade 5s infinite;
}