/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

img, svg, picture, a img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

input, textarea {
  -webkit-user-select: auto;
  user-select: auto;
}

::-webkit-scrollbar {
  background: none !important;
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

body {
  -webkit-font-smoothing: antialiased;
  background: #fbe8dc;
  justify-content: center;
  min-height: 100vh;
  font-family: Rubik, sans-serif;
  font-weight: 400;
  display: flex;
}

body.no-scroll {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

button {
  font-family: inherit;
}

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