:root {
  --border: 1px;
  
  --white: #FFFDFA;
  --black: #0B0B0B;
  --cream: #FFF5EB;
  --blue: #0073C2;
  --terracota: #D96F4C;
  --yellow: #FFC378;
  --mauve: #D5A8F1;
  --green: #B4D1BB;
  --gray: #D9D9D9;
  --linen: #FFF5EB;
  
  --text-color: var(--black);
  --bg-color: var(--cream);
  --button-bg-color: var(--blue);
  --button-text-color: var(--white);
  --accent-color: var(--terracota);
  --accent-light: #FEEFDC;
  --bg-position: center;
  
  --body-font-family: "DM-Sans", sans-serif;
  --body-font-weight: 400;
  --body-font-weight-med: 500;
  --body-font-style: normal;
  --body-font-line-height: 1.5;

  --heading-font-family: "Lil-Grotesk", sans-serif;
  --heading-font-weight: 700;
  --heading-font-weight-light: 500;
  --heading-font-style: normal;
  --heading-font-line-height: 1.1;

  --mono-font-family: "DM-Mono", monospace;
  --mono-font-weight: 500;
  --mono-font-style: normal;
  
  --line: 1px;
  
  --container: 125rem;
  --container-s: 45rem;
  --container-padding: var(--spacing-10);
  
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  --rounded-xs: 1px;
  --rounded-sm: 0.125rem;
  --rounded: 0.5rem;
  --rounded-xl: 1.5rem;
  
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
  0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: rgba(0, 0, 0, 0.025) 0 0 10px, rgba(0, 0, 0, 0.075) 0 5px 40px,
  rgba(0, 0, 0, 0.075) 0 30px 100px;
  --shadow-outline: currentColor 0 0 0 2px;
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  --spacing-0: 0;
  --spacing-px: 1px;
  --spacing-2px: 2px;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing--6: -1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing--12: -3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-36: 9rem;
  --spacing-42: 10.5rem;
  
  --text-3xs: 0.75rem;
  --text-2xs: 0.875rem;
  --text-base: clamp(0.9rem, 0.8634rem + 0.1561vw, 1rem);
  --text-xs: 1.125rem;
  --text-s: clamp(1.3rem, 1.2726rem + 0.1171vw, 1.375rem);
  --text-m: clamp(1.4rem, 1.3177rem + 0.3512vw, 1.625rem);
  --text-ml: clamp(1.2rem, 1.0063rem + 0.8263vw, 1.75rem);
  --text-l: clamp(1.7rem, 1.5403rem + 0.5112vw, 2rem);
  --text-xl: clamp(2.2rem, 1.9073rem + 1.2488vw, 3rem);
  --text-2xl: clamp(2.4rem, 1.7232rem + 2.8878vw, 4.25rem);
  --text-3xl: clamp(2.75rem, 1.7896rem + 4.0976vw, 5.375rem);
}

@media screen and (max-width: 767px) {
  :root {
    --container-padding: var(--spacing-6);
  }
}