.face {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #ffcd00;
  display: flex;
  justify-content: center;
  align-items: center;
}

.face::before {
  content: "";
  position: absolute;
  top: 180px;
  width: 150px;
  height: 70px;
  background: #b57700;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  transition: 0.5s;
}

.face:hover::before {
  top: 210px;
  width: 150px;
  height: 20px;
  background: #b57700;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.eyeBx {
  /* background: #bccc; */
  /* margin-left: 0.5em; */
  margin-left: 35vw;
}

.eyes {
  position: relative;
  /* top: -40px; */
  display: flex;
  /* background: pink; */
}

.eyes .eye {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
  background: #fff;
  margin: 0 2px;
  border-radius: 50%;
  /* padding: 1px; */
}

.eyes .eye::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  background: #000;
  border-radius: 50%;
}

@media (max-width: 500px) {
  .eyeBx {
    display: none;
  }
}
