#appContent {
  width: 100%;
  height: 100%;
}

:root {
  color-scheme: dark;
  --o: #ff6422;
}

* {
  box-sizing: border-box;
}

html,body,#map {
  height: 100%;
  width: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: #111;
  font-family: Inter,system-ui,sans-serif;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x pan-y;
}

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