@font-face {
    font-family: 'Open Sans';
    src: url('../../img/OpenSans.ttf');
}

body {
	margin:0px;
	width:100%;
	height:100%;
	background-color:#fff;
	background-repeat:no-repeat;
	background-size:cover;
	font-family:'Open Sans', sans-serif;
	font-size:13px;
	color:#000;
}

#canvas-container {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	background-color:transparent;
	overflow:hidden;
	color:#000;
	transition:opacity 0.3s;
}

#letters-container {
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
}

#stick {
	position:absolute;
	bottom:150px;
	left:50%;
	width:50px;
	height:150px;
	margin-left:-25px;
	background-repeat:no-repeat;
	background-size:contain;
}

div.letter {
	position:absolute;
	width:65px;
	height:40px;
	background-repeat:no-repeat;
	background-size:contain;
	transition:top 1s, left 1s, transform 1s;
}

#text-container {
	position:absolute;
	bottom:50px;
	left:50%;
	z-index:9;
	max-width:50%;
	text-align:center;
	transform:translateX(-50%);
	transition:opacity 0.8s;
}

#text-container img {
	max-width:100%;
	max-height:70px;
}