
@tailwind base;
@tailwind components;
@tailwind utilities;



.stepText {
       position: relative;
   }

   .stepText>span {
       animation: typing 5s steps(100, end) infinite;
       overflow: hidden;
       white-space: nowrap;
       display: inline-block;
       position: absolute;
       top: 0;
       width: 100%;
   }

   @keyframes typing {
       from {
           width: 0;
       }

       to {
           width: 100%;
       }
   }
 