/*
	Author: Daniel Snows
	Author URL: danielsnows.com.br
	Author Facebook: fb.me/danielsnows
*/
/*reset*/
* { 
	margin: 0;
	padding: 0;  
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
a {
	text-decoration: none;
	color: #111;
}
body {
	font-family: 'Open Sans', sans-serif;
	color: #fff;
	background-color: #bf0302;
	text-align: center;
}
em {
	color: rgba(255,255,255,0.5);
}
h1 {
	text-align: center;
	padding: 20px 0;
	font-weight: 300;
}
footer {
	position: fixed;
	text-align: center;
	width: 100%;
	bottom: 10px;
	font-size: 20px;
}
/*---------------*/
/*Construction*/
.baymax {
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	left: 50%;
	margin-left: -250px;
	top: 50%;
	margin-top: -250px;
	-webkit-box-shadow: -20px 20px 20px rgba(0,0,0,0.2);
	box-shadow: -20px 20px 20px rgba(0,0,0,0.2);
	background: #fff;
	background: -moz-linear-gradient(45deg, #bfbfbf 0%, #fefefe 100%);
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#bfbfbf), color-stop(100%,#fefefe));
	background: -webkit-linear-gradient(45deg, #bfbfbf 0%, #fefefe 100%);
	background: -ms-linear-gradient(45deg, #bfbfbf 0%, #fefefe 100%);
	background: linear-gradient(45deg, #bfbfbf 0%, #fefefe 100%);
	cursor: pointer;
}
.baymax:after {
	content: '';
	width: 85%;
	height: 85%;
	background-color: rgba(255,255,255,0.15);
	position: absolute;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	right: 10px;
	top: 10px;
}

.l-eye, .r-eye {
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: #111111;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	top: 50%;
	z-index: 9;
	-webkit-box-shadow: 0px 2px 0 rgba(255,255,255,0.7);
	box-shadow: 0px 2px 0 rgba(255,255,255,0.7);
	overflow: hidden;
}
.l-eye {
	left: 50px;
}
.r-eye {
	right: 50px;
}
.line {
	height: 10px;
	background-color: #111;
	position: absolute;
	top: 50%;
	margin-top: 40px;
	width: 393px;
	left: 55px;
	z-index: 8;
}
/*mouse hover*/
.baymax * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
}
/*close eye on mouse-hover*/
.l-eye:before, .r-eye:before {
	content: '';
	width: 100%;
	height: 50%;
	left: 0;
	position: absolute;
	background-color: #bfbfbf;
	top: -100%;
	transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
}
.baymax:hover .l-eye:before, .baymax:hover .r-eye:before {
	top: 0;
}
