@import url('https://fonts.googleapis.com/css?family=Varela+Round');
 body {
	 background-color: black;
	 height: 100vh;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin: 0;
}
 .neon {
	 color: #7affe9;
	 font-family: 'Varela Round', sans-serif;
	 font-size: 5vh;
	 text-shadow: 0 0 10px #1dce73, 0 0 20px #21ba6a, 0 0 30px #24a662, 0 0 40px #289359, 0 0 70px #2c7f50, 0 0 80px #2f6b48, 0 0 100px #33573f;
	 opacity: 0.2;
	 transition: all 0.5s ease-in-out;
}
 .neon:hover {
	 cursor: default;
	 transition: all 0.5s ease-in-out;
	 opacity: 1;
}