.catrina_svg {
  width: 420px;
  height: 415px;
  position: absolute;
  left: 0;
  bottom: 0;
}

svg {
  width: 400px;
}

#ojoDer,
#ojoIzq {
  animation: myAnim 1.3s ease-out infinite alternate-reverse forwards;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes myAnim {
  0% {
    transform: rotateX(-90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}
#manoDerecha_ {
  animation: hand 1s infinite alternate-reverse;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes hand {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(10deg);
  }
}

#manoIzquierda_ {
  animation: hand2 1s infinite alternate-reverse;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes hand2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-10deg);
  }
}
img {
  position: absolute;
}

img.sombrero {
  top: -149px;
  left: -56px;
  padding: 20px;
}
img.corset {
  bottom: -25px;
  left: 105px;
}
