.cat-face {
  position: relative;
  display: inline-block;
  min-width: 70px;
  width: 70px;
  height: 70px;
  background: #e5a87c;
  border-radius: 50%;
  margin: 10px;
  box-shadow: inset 0 -3px 0 #da7b37;

  top: 30px;
  left: 10px;
}

/* ears */
.cat-ear {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #e5a87c;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: -20px;
}

.cat-ear.left {
  left: -10px;
  rotate: -35deg;
}

.cat-ear.right {
  right: -10px;
  rotate: 35deg;
}

/* eyes */
.cat-eyes {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 60%;
  display: flex;
  justify-content: space-between;
  transform: translateX(-50%);
}

.eye {
  width: 10px;
  height: 14px;
  background: black;
  border-radius: 50%;
}

/* nose */
.cat-nose {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 10px;
  height: 7px;
  background: #c56b84;
  border-radius: 50% / 60%;
  transform: translate(-50%, -50%);
}

.cat-blush-l,
.cat-blush-r {
  position: absolute;
  top: 61%;
  left: 7px;
  width: 20px;
  height: 10px;
  background: #ffa5c6;
  border-radius: 50%;

  rotate: 10deg;

  /* add shadow */
  /* box-shadow: 0 2px 4px rgba(255, 0, 130, 0.3); */
  box-shadow: 0 0px 4px #e5a87c inset;
}

.cat-blush-r {
  left: auto;
  right: 7px;
  rotate: -10deg;
}

/* mouth */
.cat-mouth {
  position: absolute;
  top: 68%;
  left: 50%;
  width: 20px;
  height: 10px;
  border-bottom: 2px solid #c56b84;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%);
}

.fingers {
  position: absolute;
  justify-self: center;
  rotate: 5deg;
  bottom: -25px;
  left: -5px;
}

.fingers {
  font-size: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fingers .finger {
  color: #d67c3c;
  text-shadow: 1px 1px 0 #00000022;
}

.fingers .finger.left {
  animation: fingerDance-l 1.7s ease-in-out infinite;
}

.fingers .finger.right {
  animation: fingerDance-r 1.7s ease-in-out infinite;
}

@keyframes fingerDance-l {
  0% {
    margin-left: 0;
  }

  50% {
    margin-left: -0.7rem;
  }

  100% {
    margin-left: 0;
  }
}

@keyframes fingerDance-r {
  0% {
    margin-left: 0;
  }

  50% {
    margin-left: 1.2rem;
  }

  100% {
    margin-left: 0;
  }
}
