.animatable {
    transform: translate(0, 3rem);
    opacity: .2;
    filter: blur(12px);
}

.show:nth-child(even) {
    animation: x .4s ease-in .15s 1 forwards;
}
.show:nth-child(odd) {
    animation: x .4s ease-in 0s 1 forwards;
}

@keyframes x {
    100% {
        transform: translate(0, 0);
        opacity: 1;
        filter: blur(0px);
    }
}