html, body, #question {
/*	width: 100%;*/
	height: 100%;
	background-color: hsl(350, 40%, 50%);
}
#question {
	display: flex;
	justify-content: center;
	align-items: center;
}

#question h1 {
	padding: 50px;
	color: black;
	font-size: 400%;
	text-shadow: 0 0 1px white, 
                 0 0 150px white;
	position: relative;
}

#question a:link {
	text-decoration: none;
}

#question h1:hover {
	color: black;
	font-size: 400%;
	text-shadow: 0 0 1px black, 
                 0 0 15px hsl(350, 100%, 50%), 
                 0 0 75px hsl(350, 100%, 50%), 
                 0 0 150px hsl(350, 100%, 50%);
	transition: text-shadow 2s ease-in-out;
}

#question h1::after {
	content: "Curriculum Vitea";
	color: hsl(350, 40%, 50%);
	position: absolute;
	top: 200px;
	display: block;
	font-size: 33%;
	text-shadow: 0 0 1px hsl(350, 40%, 50%), 
                 0 0 150px hsl(350, 40%, 50%);
	transition: color 5s ease-in-out,
				text-shadow 5s ease-in-out;
}

#question h1:hover::after {
	color: black;
	text-shadow: 0 0 15px hsl(350, 100%, 50%), 
                 0 0 75px hsl(350, 100%, 50%), 
                 0 0 150px hsl(350, 100%, 50%);
}
