html {
  scroll-behavior: smooth;
}

.animate-blob {
  animation: blob 7s infinite;
}

@keyframes blob {
  0% { transform: scale(1); }
  33% { transform: scale(1.2); }
  66% { transform: scale(0.8); }
  100% { transform: scale(1); }
}
