.typewriter {
overflow: hidden;
white-space: nowrap;
border-right: 0px solid #000;
font-size: 80px; /* Adjusted font size to 40px */
margin: 0 auto;
display: inline-block;
}
/* Typing animation */
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}
/* Blinking cursor animation */
@keyframes blink {
50% {
border-color: transparent;
}
}
/* Apply animations to text container */
/* Apply typing animation to the text */
.typewriter span {
display: inline-block;
white-space: nowrap;
overflow: hidden;
border-right: 1px solid #000;
animation: typing 4s steps(40) 1s forwards;
}
COMING SOON...
Hey friend! You’ve stumbled across an area that’s still being worked on. Come back later and it’ll hopefully be finished by then.