/* Minimal styles for the static site scaffold */
:root{
  --bg:#f7f9fc;
  --card:#ffffff;
  --accent:#0366d6;
  --muted:#6b7280;
}
html,body{height:100%;margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial; background:var(--bg); color:#111827}
.container{max-width:800px;margin:48px auto;padding:24px}
header h1{margin:0 0 8px;font-size:2rem}
.projects{list-style:none;padding:0;margin:16px 0}
.projects li{margin:8px 0}
.projects a{display:inline-block;padding:12px 16px;background:var(--card);border-radius:8px;color:var(--accent);text-decoration:none;border:1px solid rgba(2,6,23,0.06)}
.projects a:hover{background:#f0f6ff}
footer{margin-top:28px;color:var(--muted);font-size:0.9rem}
