:root {
  color-scheme: dark;
  --cream: #ffe9c7;
  --toast: #c8752f;
  --copper: #8f461b;
  --coffee: #130b08;
  --charcoal: #080706;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  overflow: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--cream);
  background: var(--charcoal);
}

.page-shell {
  position: relative;
  width: 100vw;
  height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

#corgi-stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
