/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 * animation-delay: calc(var(--delay)/10);
 * Copyright (c) 2022 Animate.css
 */

/* Rotating entrances */
.rotate {
  animation-name: rotate;
  animation-duration: 3s;
  animation-fill-mode: both;
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}