/* Minimal shared Orion base styles required by the supplied RSVP page. */
:root {
  color-scheme: light;
  --orion-ink: #25372b;
  --orion-paper: #ffffff;
}
html, body { margin: 0; padding: 0; }
body {
  background: var(--orion-paper);
  color: var(--orion-ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input { font: inherit; }
