.fade-in {
  animation: fadeIn 3s;  
}

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