@keyframes createBox {
    from {
      transform: scale(0);
    }
    to {
      transform: scale(1);
    }
    
  
 
    
  }
  .box1{
   animation: createBox 1.5s ;
  
}
