#box{
	position: absolute;
	z-index: 9;
	background-color: #000000;
	height: 50px;
	width: auto;
}
.circle{
  position:absolute;
  transform:translate(-50%,-50%);
  height:35px;
  width:35px;
  border-radius:50%;
	
/* border:2px solid black; */
}

.BananaImg{
	
	 position:absolute;
  transform:translate(-50%,-50%);
  height:120px;
  width:120px;
  border-radius:50%;
  border:2px solid black;
	
}
/* 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: 4em;
  background-color: #231f1e;
  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: radial-gradient(#271e1e 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);
}