/* [project]/src/styles/globals.css [client] (css) */
html, body {
  width: 100dvw;
  max-width: 100vw;
  height: 100svh;
  max-height: 100svh;
}

body {
  color: #fff;
  background: #2a2a2a;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 16px;
  position: relative;
}

::-webkit-scrollbar-thumb {
  background-color: #0000;
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 5px 5px 13px #0000;
}

::-webkit-scrollbar-corner {
  background-color: #0000;
}

/*# sourceMappingURL=src_styles_globals_5bb75e7e.css.map*/