.animation-llama {
  position: fixed;
  bottom: 100%;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  z-index: 10;
  transition: bottom 0.3s ease-in-out, left 0.3s ease-in-out;
}

@keyframes peekLlama {
  0%   { bottom: -4rem; }   /* спрятана */
  5%  { bottom: -1rem; }       /* выглянула */
  8%  { bottom: -2rem; }   /* чуть спряталась */
  30%  { bottom: -2rem; }   /* чуть спряталась */
  40%  { bottom: -0.5rem; }       /* снова выглянула */
  42%  { bottom: -0.5rem; }       /* снова выглянула */
  47%  { bottom: -4rem; }   /* полностью спряталась */
  100% { bottom: -4rem; }   /* пауза */
}

.animation-llama.peek {
  animation: peekLlama 12s infinite;
  transition: bottom 0.3s ease-in-out;
}