/* Description: Styles for the About Me section with a terminal-like appearance */
/* Container for the About Me section */
/* Typing cursor effect */
.typing-text {
  font-size: 1.25rem; /* adjust this value as needed */
  line-height: 1.5;
}

.typing-text::after {
  content: '|';
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}