@keyframes slide-in-elliptic-bottom-fwd {
0% {
transform: translateY(600px) rotateX(30deg) scale(0);
transform-origin: 50% 100%;
opacity: 0
}
to {
transform: translateY(0) rotateX(0) scale(1);
transform-origin: 50% -1400px;
opacity: 1
}
}
.GRIMOIRE_CSS_ANIMATION {
animation-name: slide-in-elliptic-bottom-fwd;
}