/* [project]/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1a0f00;
  background: #fdfaf5;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

input, button, select, textarea {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f5efe4;
}

::-webkit-scrollbar-thumb {
  background: #c9a96e;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8620a;
}

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

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