/* [project]/src/styles/globals.css [client] (css) */
@font-face {
  font-family: XuntaSans;
  src: url("/fonts/XuntaSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: XuntaSans;
  src: url("/fonts/XuntaSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #fff;
  --foreground: #171717;
  --font-regular: "XuntaSans", Arial, Helvetica, sans-serif;
  --font-bold: "XuntaSans", Arial, Helvetica, sans-serif;
  --font-weight-bold: bold;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: XuntaSans, Arial, Helvetica, sans-serif !important;
}

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

.font-bold {
  font-family: var(--font-bold);
  font-weight: var(--font-weight-bold);
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}

.MuiInputBase-input, .MuiInputLabel-root, .MuiFormHelperText-root, .MuiButton-root, .MuiAlert-message, .MuiTypography-root {
  font-family: XuntaSans, Arial, Helvetica, sans-serif !important;
}


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