.face {
  width: 30%;         
  aspect-ratio: 1 / 1.3;
  background: #ff9925;   
  border: 2px solid #000; 
  border-radius: 50%;     
  margin: 50px auto;     
  position: relative;     
  display: flex;
  align-items: center;
  justify-content: center;
}


.eyes {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.eye {
  width: 25%;
  aspect-ratio: 2 / 1;
  background: #fff;
  display: inline-block;
  margin: 8%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.ball {
  width: 30%;
  aspect-ratio: 1 / 1;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

