body {
	height: 100vh;
	padding: 0px;
	margin: 0px;
}

div.main {
	margin: 0px;
	padding: 0px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

p {
	font-size: 4vh;
	text-shadow: 2px 2px 6px #606070;
	animation-name: text;
	animation-duration: 2s;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(0.8,0.1,0.2,0.9);
	animation-iteration-count: infinite;
}

@keyframes text {
	from {
		transform: scale(1,1);
	}
	to {
		transform: scale(1.1,1.1);
	}
}