@layer base{
  :root {
    --background: 38 30% 97%;
    --foreground: 20 25% 12%;

    --card: 38 35% 94%;
    --card-foreground: 20 25% 12%;

    --popover: 38 35% 94%;
    --popover-foreground: 20 25% 12%;

    --primary: 24 55% 26%;
    --primary-foreground: 38 40% 97%;

    --secondary: 35 30% 88%;
    --secondary-foreground: 20 25% 18%;

    --muted: 35 20% 90%;
    --muted-foreground: 22 15% 42%;

    --accent: 32 75% 48%;
    --accent-foreground: 38 40% 98%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;

    --border: 32 20% 84%;
    --input: 32 20% 84%;
    --ring: 24 55% 26%;

    --radius: 0.75rem;
  }

  .dark {
    --background: 20 28% 9%;
    --foreground: 38 30% 92%;

    --card: 20 24% 13%;
    --card-foreground: 38 30% 92%;

    --popover: 20 24% 13%;
    --popover-foreground: 38 30% 92%;

    --primary: 32 70% 52%;
    --primary-foreground: 20 28% 9%;

    --secondary: 20 20% 18%;
    --secondary-foreground: 38 30% 90%;

    --muted: 20 18% 20%;
    --muted-foreground: 35 15% 68%;

    --accent: 32 75% 48%;
    --accent-foreground: 38 40% 98%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 0 0% 98%;

    --border: 20 20% 22%;
    --input: 20 20% 22%;
    --ring: 32 70% 52%;
  }
}
@layer base{
  * {
    border-color: hsl(var(--border));
  }
  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-feature-settings: "rlig" 1, "calt" 1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
}
html{
  scroll-behavior: smooth;
}
::-webkit-scrollbar{
  width: 8px;
}
::-webkit-scrollbar-track{
  background: hsl(var(--background));
}
::-webkit-scrollbar-thumb{
  background: hsl(var(--border));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover{
  background: hsl(var(--primary));
}