/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

body, html {
	padding:  0px;
	margin:  0px;
	width: 100%;
	height:  100%;
}

.transition( @what: all 1500ms ease ) {
	-webkit-transition: @what;
	-moz-transition: @what;
	-o-transition: @what;
	transition: @what;
}

.social-share {
	margin-top: 20px;
	margin-left: 20px;
	display: block!important;
	position: fixed;
	z-index: 1000;
	-webkit-filter: grayscale(100%);
	.transition;
	
	&:hover {
		-webkit-filter: grayscale(0%);
	}
}

#player {
}

#sound-button {
	z-index: 1000;
	position: fixed;
	width: 58px;
	height: 59px;
	top: 100%;
	left: 100%;
	margin-left: -70px;
	margin-top: -70px;
	cursor: pointer;
	
	&.on {
		background-image: url( ../images/sound_off.png );
	}
	
	&.off {
		background-image: url( ../images/sound_on.png );
	}
}

.page {
	width: 100%;
	height: 100%;
	overflow: hidden;
	
	.start {
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 900;
		background: transparent;
		.transition;
		
		.circle {
			position:  absolute;
			width: 559px;
			height: 559px;
			background-image:  url( ../images/intro.png );
			top: 50%;
			left: 50%;
			margin-top: -280px;
			margin-left: -280px;
		
			.text {
				font-family: PTSansPro-Caption;
				font-size: 16px;
				line-height: 20px;
				color: #ffffff;
				padding: 240px 50px 0px 50px;
				text-align: center;
			}
			
			.go {
				width: 200px;
				height: 64px;
				cursor: pointer;
				background-image:  url( ../images/button.png );
				margin: 60px 0px 0px 175px;
				
				&:hover {
					background-image:  url( ../images/button_hover.png );
				}
			}
		}
		
		&.hidden {
			top: -200%;
		}
	}
	
	.backgrounds {
		width: 100%;
		height: 100%;
		position: absolute;
		overflow: hidden;
		z-index: 1;
		background-color: #000000;
		
		.background {
			width: 100%;
			height: 100%;
			position: absolute;
			z-index: 4;
			opacity: 0;
			background-size: cover;
			background-position: center center;
			
			&.showed {
				opacity: 1;
				z-index: 3;
			}
		}
	}
	
	.content {
		width: 100%;
		height: 100%;
		position: relative;
		overflow: hidden;
		z-index: 5;
		
		.object {
			position: absolute;
			z-index: 10;
			opacity: 0;
			.transition(opacity 1500ms ease);
			
			&.showed {
				opacity: 1;
			}
			
			&.word {
				font-size: 70px;
				font-family: MonoCondensed-Bold;
				color: #ffffff;
				text-shadow: 0px 0px 6px #ffffff;
			}
		}
	}
}

#objects {
	display: none;
}