html{
  scroll-behavior:auto!important;
}

[id]{
  scroll-margin-top:var(--sticky-header-offset, 96px);
}

@keyframes section-arrival{
  from{
    transform:translateY(2px);
  }
  to{
    transform:translateY(0);
  }
}

.section-arrived{
  animation:section-arrival 180ms ease-out;
  will-change:transform;
}

@media (prefers-reduced-motion: reduce){
  .section-arrived{
    animation:none!important;
  }
}
