
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import "tailwindcss";

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 0 0% 0%;
    --primary: 199 100% 36%;
    --secondary: 199 100% 26%;
    --accent: 199 100% 46%;
    --muted: 210 40% 96%;
    --border: 214 32% 91%;
    
    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  }

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  body {
    background: #ffffff;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
 
  }

}
