Smooth scrolling to anchors

For a CSS-only methode to provide smooth scrolling action to anchors, you can add the following:

html {
	scroll-behavior: smooth;
}

It is good practice to also respect the users wishes if they want to avoid fast movement, so you can disable for those users by also adding:

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}