.autoShow {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
    transition: all 1s ease;
  }
  
  .autoShow.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }