html, body {
	width: 100%;
	height: 100%;
  	margin: 0;
  	padding: 0;
	background-color: #fff;
}

body{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#wrapper{
	position: relative;
	width: 100vmin;
	box-sizing: border-box;
	overflow: hidden;
}

#wrapper:after {
  	content: "";
  	display: block;
  	padding-bottom: 100%;
}

#head {
	position: absolute;
	left: 5%;
	box-shadow: 10px 10px 10px 4px rgba(138,138,138,0.47);
	border-radius: 5%;
	z-index: 2;
}

#mouth {
	position: absolute;
	width: 10%;
	height: 10%;
	bottom: 0;
	border-radius: 0 0 5% 5%;
	box-shadow: 10px 10px 10px 4px rgba(138,138,138,0.47);
}

#eyes {
	position: absolute;
	top: 50%;
	width: 100%;
}

#pupil-left{
	width: 20%;
	height: 90%;
	position: absolute;
	bottom: 0;
	left: 10%;
	background-color: #000;
	border-radius: 15%;
}

#pupil-right{
	width: 20%;
	height: 90%;
	position: absolute;
	bottom: 0;
	right: 10%;
	background-color: #000;
	border-radius: 15%;
}