.JewType{
    translate: none; rotate: none; scale: none; opacity: 1; transform: translate(0px, 0px);
}
.carousel-font{   
    animation-name: move-in;
    animation-duration: 10s; 
    animation-iteration-count: infinite;  
}

@keyframes move-in {
    /* from {height:calc(100vh - 300px);width: calc(100vw - 300px);}
  to {height:calc(100vh - 150px);width: calc(100vw);} */
  from{transform: scale(0.5);}
  to {transform: scale(0.8);}
  }

