h1 {
	font-family: Monospace;
	color: blue;
	font-size: 3em;
	transition: color 0.2s ease;
}

h1:hover {
	color: lightblue;
}

h1:active {
	color: cyan;
}
