@font-face {
  font-family: "Codice X";
  src: url("./public/fonts/codiceX.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --fg: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(17, 17, 17, 0.12);
  --panel-bg: rgba(255, 255, 255, 0.92);
  --panel-shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select {
  font: inherit;
}

.app-shell {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
}

.scene {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

