.anim {
   animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
   from {
       opacity: 0;
    }
    to {
       opacity: 1;
    }
}