
:root {
  /* Primary Colors */
  --color-primary-050: hsl(34, 100%, 97%);
  --color-primary-100: hsl(34, 100%, 92%);
  --color-primary-200: hsl(34, 96%, 85%);
  --color-primary-300: hsl(34, 90%, 75%);
  --color-primary-400: hsl(34, 70%, 60%);
  --color-primary-500: hsl(34, 60%, 50%);
  --color-primary-600: hsl(34, 55%, 40%);
  --color-primary-700: hsl(34, 50%, 32%);
  --color-primary-800: hsl(34, 45%, 25%);
  --color-primary-900: hsl(34, 40%, 18%);
  --color-primary-950: hsl(34, 35%, 12%);

  /* Neutral Colors */
  --color-neutral-050: hsl(210, 1%, 95%);
  --color-neutral-100: hsl(210, 1%, 90%);
  --color-neutral-200: hsl(210, 2%, 80%);
  --color-neutral-300: hsl(210, 3%, 70%);
  --color-neutral-400: hsl(210, 4%, 60%);
  --color-neutral-500: hsl(210, 5%, 50%);
  --color-neutral-600: hsl(210, 6%, 40%);
  --color-neutral-700: hsl(210, 7%, 30%);
  --color-neutral-800: hsl(210, 8%, 20%);
  --color-neutral-900: hsl(210, 9%, 15%);
  --color-neutral-950: hsl(210, 10%, 10%);

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  --text-9xl: 8rem;

  /* Line Heights */
  --text-xs--line-height: calc(1 / 0.75);
  --text-sm--line-height: calc(1.25 / 0.875);
  --text-base--line-height: calc(1.5 / 1);
  --text-lg--line-height: calc(1.75 / 1.125);
  --text-xl--line-height: calc(1.75 / 1.25);
  --text-2xl--line-height: calc(2 / 1.5);
  --text-3xl--line-height: calc(2.25 / 1.875);
  --text-4xl--line-height: calc(2.5 / 2.25);
  --text-5xl--line-height: 1;
  --text-6xl--line-height: 1;
  --text-7xl--line-height: 1;
  --text-8xl--line-height: 1;
  --text-9xl--line-height: 1;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 1px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.05), 0 8px 10px rgba(0, 0, 0, 0.1);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 2rem;
  --space-8: 2.5rem;
  --space-9: 3rem;
}

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

  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-regular);
  font-style: normal;
}

body {
  background-color: var(--color-neutral-050);
}

.main {
  max-width: 1000px;
  margin-inline: auto;
}