Loading tool...
Loading tool...
.typing-text {
overflow: hidden;
white-space: nowrap;
border-right: 2px solid #10b981;
animation: blink 0.75s step-end infinite;
animation: typing 3s steps(13) forwards;
font-size: 24px;
font-family: "Fira Code", "Courier New", monospace;
color: #10b981;
background-color: #1e1e1e;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink {
0%, 100% { opacity: 1 }
50% { opacity: 0 }
}