/* Learning with Ms. Remesch — shared brand stylesheet
   Used by remeschresource.com pages (homepage + game hubs).
   Keep this file as the single source of truth for brand colors/type
   so every page — this one and future game builds — stays consistent
   without re-declaring the palette each time. */

:root{
  --ink:#2B2620;
  --green:#2F6F4E;
  --green-dark:#204B36;
  --cream:#FBF7EF;
  --card:#FFFFFF;
  --tan:#C98A3E;
  --tan-light:#F3E2C6;
  --line:#E4DCC8;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Lexend', sans-serif;
  line-height:1.5;
}

.signature{
  font-family:'Meow Script', cursive;
  color:var(--green);
  margin:0;
  line-height:1;
}

.rule{
  height:3px;
  background:var(--green);
  border-radius:2px;
}

a{ color:var(--green-dark); }
