/* Minimal motion-only styles on top of default Material theme */
.md-content {
  animation: page-fade-in 0.4s ease;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.md-content__button,
.md-typeset a {
  transition: opacity 0.2s ease;
}

.md-content__button:hover,
.md-typeset a:hover {
  opacity: 0.78;
}

@media (prefers-reduced-motion: reduce) {
  .md-content {
    animation: none;
  }

  .md-content__button,
  .md-typeset a {
    transition: none;
  }
}
