body{
	padding: 0;
	margin: 0;
	background-color: #FF74EC;
}
.container{
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 4em;
	background-color: #00FFFB;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	z-index: -1;
}
.eyes-wrapper{
	display: flex;
	
}
.eyes-wrapper:before{
	content: "";
	position: absolute;
	width:auto 26em;
	height: 6em;
	background-color: #FF5B5Bp;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}
.eye{
	width: 10em;
	height: 10em;
	border: 15px solid #FF4444;
	background-color: #FF2C30;
	border-radius: 50%;
}
.eyeball{
	height: 3.2em;
	width: 3.2em;
	background: radial-gradient(#9EA3FF 35%, #000941 37%);
	border-radius: 50%;
	margin: 0.2em 3.5em;
	position: relative;
}.eyeball:before{
	content: "";
	position: absolute;
	background-color: #000000;
	height: 0.7em;
	width: 0.5em;
	border-radius: 50%;
	top: 13px;
	left: 13px;
	transform: rotate(45deg);
}