Zoom in

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

@keyframes zoom-in {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman