@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://raw.githubusercontent.com/blaisck/sfwin/master/SFPro/TrueType/SFProDisplay-Heavy.ttf");
@import url("https://raw.githubusercontent.com/blaisck/sfwin/master/SFPro/TrueType/SFProText-Light.ttf");
@tailwind base;
@tailwind components;
@tailwind utilities;


        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        .typing-effect {
            overflow: hidden; /* Ensures the text stays within its container */
            white-space: nowrap; /* Prevents text from wrapping */
            border-right: 3px solid #a57ec6; /* Cursor color (matches primary color) */
            animation: typing 3s steps(20, end), blink 0.75s step-end infinite;
        }


html, body {
    overflow-x: hidden; 
    max-width: 100vw;
}

@keyframes appear{
    from{
        opacity:0;
        scale:0.5;
    }
    to{
        opacity: 1;
        scale: 1;
    }
}

.animated-border {
    animation: borderColorChange 3s linear infinite;
  }

  @keyframes borderColorChange {
    0% {
      border-color: white;
    }
    50% {
      border-color: #9a7af9;
    }
    100% {
      border-color: #e0e0ff;
    }
  }
