/* assets/style.css */

/* Custom animation for the blinking cursor */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.animate-pulse {
  animation: blink 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}