/* 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%;
	background: #303591;
}

.social-share {
	margin-top:  50px;
	margin-left: 20px;
}

#page {
	width: 100%;
	height:  100%;
	
	.first {
		background: #303591;
		width: 100%;
		height:  100%;
		
		.container {
			position: absolute;
			width: 1200px;
			height:  600px;
			top: 50%;
			left: 50%;
			margin-top: -300px;
			margin-left: -600px;
			z-index: 100;
			
			.start {
				position: absolute;
				margin-top: 400px;
				margin-left: 620px;
				background-image: url(../images/button.png);
				width: 203px;
				height: 110px;
				cursor: pointer;
				
				&:hover {
					background-image: url(../images/button_hover.png);
				}
			}
		}
	}
	
	.active {
		width: 100%;
		height:  100%;
		display: none;
	
		.backgrounds {
			width: 100%;
			height:  100%;
		
			.background {
				width: 100%;
				height:  100%;
				background-size: cover;
				background-position: center center;
				display: none;
			}
		}
		
		.text {
			position: absolute;
			width: 1200px;
			height: 250px;
			top: 30%;
			left: 50%;
			margin-top: -125px;
			margin-left: -600px;
			text-align: center;
			color: #ffffff;
			font-family: Gothic725BlkBT;
			font-size: 59px;
			line-height: 60px;
			text-shadow: 1px 8px 9px rgba(0,0,0,0.5);
		}
		
		.again {
			position: absolute;
			top: 75%;
			left: 50%;
			margin-top: -55px;
			margin-left: -100px;
			background-image: url(../images/more.png);
			width: 203px;
			height: 110px;
			cursor: pointer;
			
			&:hover {
				background-image: url(../images/more_hover.png);
			}
		}
		
		.share {
			position: absolute;
			height: 70px;
			width: 100%;
			top: 100%;
			margin-top: -70px;
			background: #edc436;
			text-align: center;
			
			.social-button {
				position: absolute;
				left: 50%;
				width: 145px;
				height: 35px;
				cursor: pointer;
				margin-top: 20px;
				
				&.fb {
					background: url(../images/fb.png);
					margin-left: -265px;
					
					&:hover {
						background: url(../images/fb_hover.png);
					}
				}
				
				&.vk {
					background: url(../images/vk.png);
					margin-left: -75px;
					
					&:hover {
						background: url(../images/vk_hover.png);
					}
				}
				
				&.tw {
					background: url(../images/twitter.png);
					margin-left: 115px;
					
					&:hover {
						background: url(../images/twitter_hover.png);
					}
				}
			}
		}
	}
}