/* style.css — optional overrides */
:root{
  --csu-green:#1e4d2b;
  --csu-gold:#b7bf10;
}

/* Example tweaks */
#header h1:first-child a { color: var(--csu-green); }
a.btn { background: var(--csu-green); border-color:#184021; }

/* Optional: dark mode */
@media (prefers-color-scheme: dark){
  body { color:#e6e6e6; background:#0f1115; }
  #footer { color:#b0b0b0; border-top-color:#2a2a2a; }
}