Flip in Y

global.css
.flip-in-y {
  animation: flip-in-y 0.6s ease-out both;
}

@keyframes flip-in-y {
  0% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman