html {
  color-scheme: light;
  background: #f7f9fb;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f9fb;
  color: #191c1e;
}

* {
  box-sizing: border-box;
}

::selection {
  background: rgba(8, 145, 178, 0.18);
  color: #0f172a;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #3e484d;
}

#root {
  min-height: 100vh;
}
