/* Navigation focus is moved to headings by Blazor; headings should not look interactive. */
.page-head h1:focus,
h1[tabindex="-1"]:focus {
  outline: none;
}

/* Keep the branded boot screen until the browser runtime is ready. */
#weelm-splash-overlay {
  opacity: 1;
  transition: opacity 420ms cubic-bezier(.16, 1, .3, 1);
}

#weelm-splash-overlay.leaving {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  #weelm-splash-overlay {
    transition-duration: 1ms;
  }
}
