/* style.css  — minimal but not boring */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");

:root {
  --bg: #f8f9fa; /* light gray background */
  --fg: #212529; /* dark text similar to Bootstrap */
  --accent: #0d6efd; /* Bootstrap primary blue */
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
}

main {
  max-width: 960px;
  margin: 6rem auto;       /* nice breathing room */
  padding: 0 1.5rem;       /* gutter for small screens */
}

h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
