body {
  font-family: var(--tux-fontFamilyParagraph);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: contain;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* CSS to add top offset for scroll targets which avoid header */
.scroll-target-with-header-offset::before {
  content: '';
  display: block;
  height: 120px; /* Adjust based on the height of your fixed header or desired offset */
  margin-top: -120px; /* Same value as height */
  visibility: hidden;
}
