:root {
  color-scheme: light dark;
  background: #f3f3f0;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: #f3f3f0;
}

.canvas {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100%;
  overflow: hidden;
}

.fox {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(36rem, 54vw, 56rem);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: none;
  transition: filter 240ms ease;
  user-select: none;
  -webkit-user-drag: none;
}

@media (prefers-color-scheme: dark) {
  :root,
  body {
    background: #111111;
  }

  .fox {
    filter: invert(1) brightness(0.78) contrast(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fox {
    transition: none;
  }
}
