/* Smooth scrolling IF user doesn't have a preference due to motion sensitivities */
@media screen and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

#scroll {
    display: none;
    position: fixed;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: 1000;
}
