/*
  style.css — your own custom styles.

  Most of the look of this site comes from Tailwind utility classes written
  directly in the HTML (things like "text-indigo-600" or "px-4"). This file is
  for the few extra touches that are easier to write as plain CSS.

  You can absolutely add your own rules here. Anything you write will apply
  across every page that links to this file.
*/

/* Smooth scrolling when you click links that jump to a section on the page. */
html {
  scroll-behavior: smooth;
}

/* A nicer default font stack (used if Tailwind's default isn't loaded). */
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Example custom rule: give links a gentle underline on hover.
   Delete this if you don't want it — it's just here to show you how. */
a {
  transition: color 0.15s ease;
}
