global.css
.zoom-out {
animation: zoom-out 0.6s ease-out both;
}
@keyframes zoom-out {
0% {
opacity: 1;
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(0.5);
}
} Based on @Ibelick
Designed with ♥ by @AdrianGerman