Using CSS to style for reduced-motion

@media (prefers-reduced-motion: reduce) { 
  /* If this setting is on, turn off all animation! */
  * { 
    animation: none !important;
    transition: none !important;
  }
}
}