@charset "utf-8";
/* CSS Document */

html, body{
	margin:0px;
	padding:0px;
	height: 100%;
	width:100%;
	overflow-y:hidden;
}

.main-block{
	width:width:1080px;
	margin:0 auto;
	max-height:100%;
}

.beer-glass{
	position: absolute;
	top: 15%;
	width: 50%;
	left: 15%;
}

.background{
	width:100%;
}

#littleman{
	position:absolute;
	top:6%;
	right:36%;
	width:7%;
}

#torso{
	width:100%;
}

#leftarm, #rightarm{
	position:absolute;
	top:25%;
	width:45%
}

#leftarm{
	left:-45%;
	transform:rotate(30deg);
}

#rightarm{
	right:-45%;
	transform:rotate(-30deg);
}

#leftleg, #rightleg{
	position:absolute;
	width:70%;
}

#leftleg{
	bottom:-27%;
	left:35%;
	transform:rotate(-60deg);
}

#rightleg{
	bottom:-26%;
	right:-70%;
	transform:rotate(-60deg);
}

#splash{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	text-align:center;
}

#splash .overlay{
	position:fixed;
	top:0px;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.3);
}

#splash .screen{
	position:relative;
	width:80%;
	top:15%;
	margin:0 auto;
	background-color:#FFF;
	padding:20px;
	border-radius:15px;
}

#splash h1{
	font-size:52px;
}

button{
	display: block;
	margin:0px auto 30px auto;
	width:80%;
	background-color:#3e2400;
	padding:25px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	font-size:48px;
	color:#FFF;
	border-radius:10px;
	border:0px;
}

#hesays{
	position:absolute;
	top:30px;
	width:100%;
}

#hesays .overlay{
	position:fixed;
	top:0px;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,.3);
}

#hesays .qoute{
	position:relative;
	background-color:#FFF;
	border:1px solid #000;
	border-radius:15px;
	padding:15px 20px;
	width:80%;
	margin:0 auto;
	font-size:36px;
	font-family:Arial, Helvetica, sans-serif;
}

#hesays .qoute p {
	margin-bottom:5px;
	padding:15px 15px 0px 15px;
	margin-top:0px;
}

#hesays .qoute p:first-child{
	text-align:center;
	font-weight:bold;
}

#hesays .qoute p:last-child{
	text-align:center;
	font-size:30px;
	font-style:italic;
}

#hesays .qoute p + p{
	border-top:1px solid #999;
}



@media (max-width:1080px){
	.main-block{
		width:100%;
	}
}