/*Simple reset*/
* {
	margin: 0; 
	padding: 0;
}

body {
	/*You can use any kind of background here.*/
	background: #314254;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.header-title-wrapper{
	width: 100%;
	width: 100vw;
	height: 100%;
	height: 100vh;
	z-index: 10;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
}

.header-title{
	font-family: 'Roboto Slab', Helvetica, sans-serif;
	color: #fff;
	font-size: 100px;
	text-shadow: 4px 3px 0px #314254, 9px 8px 0px rgba(0, 0, 0, 0.15);
}

.bottom-snow-wrapper{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 118px;
	width: 100%;
	background: url(../images/snow.png) repeat left bottom;
	background-size: auto;
	z-index: 12;
}

canvas {
	display: block;
	z-index: 1;
}