/* CSS Document */
body{
	padding: 0;
	margin: 0;
	background-color:  #f5d60e;
	
}
.container{
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 400em;
	background-color: #231fle;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50;	
	z-index: -1;
}
.eyes-wrapper{
	display: flex;
}
.eyes-wrapper:before{
	content: "";
	position: absolute;
	width: 26em;
	height: 6em;
	background-color: #a8a7ac;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
.eye{
	width: 10em;
	height: 10em;
	border: 15px solid #a6a4ad;
	background-color: #ffffff;
	border-radius: 50%;
}
.eyeball{
	height: 3.2em;
	width: 3.2em;
	background: repeating-linear-gradient(#271ele, 35%, #935a29 37%);
	border-radius: 50%;
	margin: 0.2em 3.5em;
	position: relative;
}

.eyeball:before {
	content: "";
	position: absolute;
	background-color: #ffffff;
	height: 0.7em;
	width: 0.5em;
	border-radius: 50%;
	top: 13px;
	left: 13px;
	transform: rotate(45deg);
	
	
}

