﻿@font-face {
  font-family: "Segoe Print Local";
  src: local("Segoe Print"), local("SegoePrint"), url("./fonts/segoepr.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --hand-font: "Segoe Print Local";
}

/* Shared mobile-first baseline for current and future pages */
html {
  font-size: 13pt;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--hand-font);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Keep scene height stable on mobile when browser UI collapses/expands */
@supports (height: 1svh) {
  .scene {
    min-height: min(94svh, 980px) !important;
  }
}



