/* https://github.com/SheepTester/sgy-sgy/blob/master/ig/app/src/app/globals.css */

:root {
  --background: #ffffff;
  --foreground: #171717;
  --percent: 10%;
}

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

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

body {
  color: var(--foreground);
  background: var(--background);
  --font-Inter-sans: "Inter";
  font-family: var(--font-Inter-sans), system-ui, "Helvetica Neue", Helvetica,
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
  word-break: break-word;
}

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

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

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