/* Scale to fit the page with constraints */
/* Smaller images will be min 25% of the width, so not as blurry */
/* Bigger images will be max 60% of the width, better for centring (?) */


.md-content__inner img:not(.grid *) {
    min-width: 25%;
    max-width: 60%;
}

/* Center the images */

.md-content__inner img {
    display: block;
    margin: 0 auto;
}

.md-content__inner iframe {
    display: block;
    margin: 0 auto;
}

:root  > * {
  --md-primary-fg-color:        #11273F;
}