/*pour les images et le copyright*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /*width: 50%;*/
  text-align: center;
}

/*couleur personnalisée*/
:root {
  --md-primary-fg-color:        #691980;
  --md-primary-fg-color--light: #ccb2d4;
  --md-primary-fg-color--dark:  #24022e;
  --md-accent-fg-color:         #a24aba;
  /*--md-accent-fg-color--transparent:   hsla(#{hex2hsl(#a24aba)}, 0.1);*/
}

/*pour les admonitions type "question" dans mon thème*/
:root {
  --md-admonition-icon--question: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.92 6.085h.001a.749.749 0 1 1-1.342-.67c.169-.339.436-.701.849-.977C6.845 4.16 7.369 4 8 4a2.756 2.756 0 0 1 1.637.525c.503.377.863.965.863 1.725 0 .448-.115.83-.329 1.15-.205.307-.47.513-.692.662-.109.072-.22.138-.313.195l-.006.004a6.24 6.24 0 0 0-.26.16.952.952 0 0 0-.276.245.75.75 0 0 1-1.248-.832c.184-.264.42-.489.692-.661.103-.067.207-.132.313-.195l.007-.004c.1-.061.182-.11.258-.161a.969.969 0 0 0 .277-.245C8.96 6.514 9 6.427 9 6.25a.612.612 0 0 0-.262-.525A1.27 1.27 0 0 0 8 5.5c-.369 0-.595.09-.74.187a1.01 1.01 0 0 0-.34.398ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"/></svg>')
}
.md-typeset .admonition.question,
.md-typeset details.question {
  border-color: var(--md-primary-fg-color--dark);
}
.md-typeset .question > .admonition-title,
.md-typeset .question > summary {
  background-color: var(--md-primary-fg-color--light);
}
.md-typeset .question > .admonition-title::before,
.md-typeset .question > summary::before {
  background-color: var(--md-primary-fg-color--dark);
  -webkit-mask-image: var(--md-admonition-icon--question);
          mask-image: var(--md-admonition-icon--question);
}
.md-typeset .question > summary::after {
	background-color: var(--md-primary-fg-color--dark);
}
.md-typeset details.question:focus-within { 
    box-shadow: 0 0 0 .1rem var(--md-primary-fg-color--light);
}
