.cursor {
display: inline-block;
width: 3px;
background-color: #4CAF50;
margin-left: 2px;
animation: blink 1s infinite;
height: 1.2em;
vertical-align: middle;
}
.typing-container {
border-radius: 10px;
padding: 25px;
margin: 20px 0;
min-height: 200px;
display: flex;
align-items: center;
justify-content: center;
}
 
.typing-text {
font-size: 90pt;
line-height: 1.6;
text-align: left;
padding: 15px;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
 
.info {
margin-top: 20px;
font-size: 1rem;
color: #aaa;
font-style: italic;
}