
html, body {
	width: 100%;
	height: 100%;
	
	background: #eee;
	color: #eee;
	
	font-family: 'Molengo', Arial, Helvetica, sans-serif;
}



h1 {
	padding: 40px;
	font-size: 52px;
	text-transform: uppercase;
}

p {
	padding: 10px 40px 10px 40px;
	
	line-height: 120%;
	font-size: 36px;
}

a {
	color: rgb(220,200,150);
}

header {
	position: absolute;
	padding: 10px 0;
	z-index: 999;
	
	height: 20px;
	width: 100%;
	
	background: rgba(255,255,255,0.4);
}

header>div {
	float: right;
	margin-right: 10px;
}

header div.facebook-button {
	top: 1px;
}

header a {
	float: left;
	font-size: 14px;
	color: #666;
	margin-left: 10px;
}

#world {
	-webkit-perspective: 500px;
 	-webkit-perspective-origin: 50% 50%;
	
	width: 100%;
	height: 100%;
}

#room {
	width: 600px;
	height: 500px;
	
	position: absolute;
	left: 50%;
	top: 45%;
	margin-left: -300px;
	margin-top: -250px;
	
}

#back,
#front,
#wall-left,
#wall-right,
#wall-top,
#wall-bottom {
	position: absolute;
	
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.45) inset;
	   -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.45) inset;
	     -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.45) inset;
	        box-shadow: 0 0 20px rgba(0, 0, 0, 0.45) inset;
}

#shadow {
	position: absolute;
	
	width: 600px;
	height: 100px;
	
	background: rgba(0,0,0,0.2);
	
	border-radius: 8px;
	
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.45);
	   -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.45) inset;
	     -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.45) inset;
	        box-shadow: 0 0 20px rgba(0, 0, 0, 0.45);
	
	-webkit-transform: translate3d(0, 550px, -10px) rotateX(70deg);
}

#back {
	width: 600px;
	height: 500px;
	
	background: rgba(0,100,120,1);
	
	text-align: center;
	
	-webkit-transform: translateZ(-49px);
}

#front {
	width: 600px;
	height: 500px;
	
	background: url('../stripe.png') no-repeat bottom;
	
	-webkit-transform: translateZ(50px);
}
	
#wall-left {
	height: 500px;
	width: 100px;
	left: 0px;
	
	background: #bbb;
	
	-webkit-transform: translateX(-50px) rotate3d(0, 50, 0, 90deg);
}

#wall-right {
	height: 500px;
	width: 100px;
	right: 0px;
	
	background: #bbb;
	
	-webkit-transform: translateX(50px) rotate3d(0, 50, 0, -90deg);
}

#wall-top {
	height: 100px;
	width: 600px;
	top: 0px;
	
	background: #999;
	
	-webkit-transform: translateY(-50px) rotate3d(50, 0, 0, 90deg);
}

#wall-bottom {
	height: 100px;
	width: 600px;
	bottom: 0px;
	
	background: #999;
	
	-webkit-transform: translateY(50px) rotate3d(50, 0, 0, -90deg);
}
