body {
  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.face {
  background: #FCD871;
  border-radius: 50%;
  height: 300px;
  width: 300px;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  position: relative;
}

.face:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -15px;
  left: -15px;
  border-radius: 50%;
  box-shadow: 15px 15px 0 0 rgba(0, 0, 0, 0.04);
}

.eye {
  background: #fff;
  display: inline-block;
  position: relative;

  border-radius: 50%;
  height: 100px;
  width: 100px;

  margin: 20px 20px 0 20px;
}

.eye:after {
  background: #510608;
  border-radius: 50%;
  content: '';

  height: 50px;
  position: absolute;
  bottom: 0;
  right: 25px;
  width: 50px;
}



.mouth {
  width: 150px;
  height: 125px;
  margin-top: -50px;
  clip-path: inset(50% 0 0 0);

  border-radius: 0 0 50% 50%;
  border: 10px solid #510608;
  border-top: 0;
}
