#wholepage {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

#hello {
	text-align: center;
	font-weight: 500;
	color: white;
	font-size: 10vh;
	font-family: 'Playfair Display';
}

.glow {
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {

	}
	to {
	  text-shadow: 0 0 10px #fff, 0 0 20px #fff;
	}
  }
