:root {
  --color-orange: #FF7911;
  --color-red: #EC1218;
  --color-dark-red: #97000F;
  --color-peach: #FFF0DB;
  --color-light-peach: #fffaf7;
  --color-dark: #5C5C5C;
  --color-light: #F6F6F6;
  --color-white: #FFFFFF;
  --color-black: #000000;

  --font-hindi: 'Noto Sans Devanagari';
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 999px;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;

  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;

   /* Button Base */
  --btn-padding: 0.5rem 1.25rem;
  --btn-radius-square: 6px;
  --btn-radius-rounded: 999px;

}


html {
  font-size: 16px;
  font-family: var(--font-body);
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
