/* Moving away from sass and towards CSS variables (as there's no compilation required) */
:root {
  /* body */
  --bs-body-bg: var(--slate-100);
  --bs-body-color: var(--slate-800);

  /* fonts */
  --bs-font-sans-serif: "Open Sans", sans-serif;
  /* misc */
  --border-radius: 0.375rem;

  --font-size-base: 0.875rem;
  --font-size-lg: 1rem;
  --font-size-sm: 0.75rem;

  --drop-shadow-rgba: rgba(8, 8, 8, 0.11);
  --modal-lg: 800px;
  --spacer: 1rem;
  --zindex-sticky: 1020;
}

