:root {
  /* Colors */
  --primary: #1e40af;
  --secondary: #374151;
  --tertiary: #f59e0b;
  --quaternary: #6366f1;
  --background: #dee2e6;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #bc6aff;
  --message-font: #ffffff;
  --light: #f8f9fa;
  --dark: #343a40;
  --border: #d3d3d3;
  --tinted-window: rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-family: arial, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.5;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;

  /* Borders */
  --border-xs: 0.125rem;
  --border-sm: 0.25rem;
  --border-md: 0.5rem;
  --border-lg: 1rem;
  --border-xl: 2rem;
  --border-radius-xs: 0.5rem;
  --border-radius-sm: 0.75rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary);
  text-decoration: none;
}
