@keyframes cardUp{

    from{

        opacity:0;

        transform:
        translateY(60px)
        scale(.95);

    }

    to{

        opacity:1;

        transform:
        translateY(0)
        scale(1);

    }

}

.card{

    opacity:0;

    animation:

    cardUp

    .65s

    ease-out

    forwards;

}

.card:nth-child(1){

    animation-delay:.55s;

}

.card:nth-child(2){

    animation-delay:.75s;

}

.card:nth-child(3){

    animation-delay:.95s;

}