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

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

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

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

#neck, #head, #hair {
	position: absolute;
	bottom: 0;
	left: 5%;
}

#nose {
	position: absolute;
	left: 100%;
	top: 50%;
}

#mouth {
	position: absolute;
	right: 0;
	bottom: 5%;
	background-color: #f00;
	width: 50%;
	height: 10%;
}

#eyes {
	position: absolute;
	top: 50%;
	right: 0;
	background-color: #fff;
	width: 40px;
	height: 40px;
}

#pupil-left{
	width: 20%;
	height: 20%;
	position: absolute;
	bottom: 0;
	left: 26%;
	background-color: #000;
}

#pupil-right{
	width: 20%;
	height: 20%;
	position: absolute;
	bottom: 0;
	right: 6%;
	background-color: #000;
}

#name{
	position: absolute;
	bottom: 2%;
	right: 2%;
	font-weight: bold;
	font-family: "Lucida Console", Courier, monospace;
	font-size: 1.5em;
}