body{
	background: #51344D;
}

#onScreen{
	font-family: 'Major Mono Display', monospace;
	color: #FFF9EC;
	width:100%;
	height: 100px;

	font-size: 60px;
  	text-align: center;


	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#onScreen:hover{
	font-size:65px;
	text-shadow: 0 0 10px #FF0000;
	transition: all 500ms ease-out;

}

.fa-snowflake {
	color: #fff;
	position: absolute;
	top: -20px;
	animation: fall linear forwards;
}

@keyframes fall {
	to {
		transform: translateY(105vh);
	}
}