html {
  font-size: 120% !important;
}

.mdx-heart {
  color: #e91e63;
  animation: mdx-heart 1s infinite;
}

@keyframes mdx-heart {
  0%, 40%, 80%, to {
    transform: scale(1)
  }

  20%, 60% {
    transform: scale(1.15)
  }
}

:root > * {
  --md-code-fg-color: #00bdd6;
}