:root {
  --md-primary-fg-color:        #ab0930;
  --md-primary-fg-color--light: #ab0930;
  --md-primary-fg-color--dark:  #ab0930;
  --md-admonition-icon--terminology: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M.301 17.615c-.13-.34-.522-1.512-.133-2.432l9.827 5.674a.33.33 0 0 0 .33 0L24 12.962v2.354l-13.84 7.99zm-.11-8.652c-.288.877.015 2.058.124 2.426l9.845 5.684L24 9.083V6.727l-13.675 7.895a.33.33 0 0 1-.33 0zm13.17-1.936a.332.332 0 0 1-.485-.207l-.28-1.133-2.126-.176a.33.33 0 0 1-.138-.614l5.578-3.22-1.702-.983-13.51 7.8 9.462 5.462 13.51-7.8-4.4-2.54zm-.182-1.729.232.938 5.198-3.001-2.04-1.178-4.993 2.884 1.31.108a.33.33 0 0 1 .293.25M24 9.845 10.325 17.74a.33.33 0 0 1-.33 0L.168 12.067c-.39.919.003 2.091.133 2.43l9.859 5.693L24 12.2z"/></svg>');
  --md-admonition-icon--spoiler: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14 12h-4v-2h4m0 6h-4v-2h4m6-6h-2.81a6 6 0 0 0-1.82-1.96L17 4.41 15.59 3l-2.17 2.17a6 6 0 0 0-2.83 0L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20z"/></svg>')
}

h1 {
  color: red;
}

.container > div {
    display: inline-block;
    display: -moz-inline-box;
    *display: inline; /* For IE7 */
    zoom: 1; /* Trigger hasLayout */
    width: 10%;
    text-align: center;
}

.md-typeset .admonition.terminology,
.md-typeset details.terminology {
  border-color: rgb(155, 75, 44);
}
.md-typeset .terminology > .admonition-title,
.md-typeset .terminology > summary {
  background-color: rgba(196, 98, 12, 0.1);
}
.md-typeset .terminology > .admonition-title::before,
.md-typeset .terminology > summary::before {
  background-color: rgb(43, 139, 8);
  -webkit-mask-image: var(--md-admonition-icon--terminology);
          mask-image: var(--md-admonition-icon--terminology);
}

.md-typeset .admonition.spoiler,
.md-typeset details.spoiler {
  border-color: rgb(37, 186, 194);
}
.md-typeset .spoiler > .admonition-title,
.md-typeset .spoiler > summary {
  background-color: rgba(179, 230, 102, 0.1);
}
.md-typeset .spoiler > .admonition-title::before,
.md-typeset .spoiler > summary::before {
  background-color: rgb(43, 139, 8);
  -webkit-mask-image: var(--md-admonition-icon--spoiler);
          mask-image: var(--md-admonition-icon--spoiler);
}
