/* =========================================================
   theme/base.css
   ---------------------------------------------------------
   Podstawowy wygląd html i body:
   tło, kolor tekstu, font, płynne scrollowanie.
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-text);
  font-family: var(--font-main);
}
