/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #0f0e13;
  --foreground: #ededed;
}

html {
  scroll-behavior: smooth;
  max-width: 100vw;
}

html, body {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body {
  max-width: 1400px;
  margin: 0 auto;
}

nav {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: 1.3rem;
  display: flex;
}

nav ul {
  justify-content: space-between;
  gap: 3rem;
  display: flex;
}

nav ul li {
  list-style: none;
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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