body {
  background-color: rgb(226, 253, 245);
  /* font-family: "liberation-serif", serif; */
}

/* reclaim bold tag for "feature" coloring */
b,
strong {
  color: rgb(102, 36, 123);
  font-family: "Alef", sans-serif;
  font-size: 1em;
  font-weight: 300;
}

/* specify bold+italic sizing to match Atrium's panel font */
strong em,
em strong,
b i,
i b {
  font-family: "liberation-serif", serif;
  font-style: italic;
  font-size: 1.2em;
}

/* might want to change when we have actual code examples... */
.md-typeset code {
}

/* repurpose highlighting (==WORD==) for mapping name mentions */
/* .md-typeset mark {
  font-family: "liberation-mono", mono;
  background-color: #f4b198;
} */

/* repurpose highlighting (==WORD==) for LED shape mentions */
.md-typeset mark {
  font-family: "liberation-mono", mono;
  background-color: rgba(255, 228, 196, 0.625);
}

/* HARDWARE CSS */
/* repurpose underline (^^WORD^^) for "hardware" */
.md-typeset ins {
  color: rgb(0, 0, 0);
  /* border: 1px solid #000000; */
  background-color: #F3F3F4;
  font-family: "liberation-serif", serif;
  font-weight: 300;
  padding: 2px 4px;
  text-decoration: none;
}
/* specify italics within "hardware" */
.md-typeset ins em, .md-typeset ins i {
  font-family: "liberation-serif", serif;
  font-style: italic;
}
/* specify bold within "hardware" */
.md-typeset ins b, .md-typeset ins strong {
  color: rgb(102, 36, 123);
  font-family: "Alef", sans-serif;
  font-size: 1em;
  font-weight: 300;
}
/* END OF HARDWARE CSS */

/* can also change the existing css for pages with '.md-typeset' */
/* hover links in body: */
.md-typeset a:hover {
  color:brown;
}

/* can change sidebar nav link coloring */
/* currently-selected */
.md-nav__item .md-nav__link--active,
.md-nav__item .md-nav__link--active code {
  color: darkmagenta;
}

/* previous in scroll */
.md-nav__link--passed,
.md-nav__link--passed code {
  color: hotpink;
}

/* hover focus */
.md-nav__link[for]:focus,
.md-nav__link[for]:hover,
.md-nav__link[href]:focus,
.md-nav__link[href]:hover {
  color: orange;
  cursor: pointer
}

/* widen figure captions */
.md-typeset figcaption {
  font-style: italic;
  margin: 1em auto;
  max-width: 75%;
}

/* admonitions for content callouts */
.md-typeset .admonition.supplement,
.md-typeset details.supplement {
  border-color: rgb(248, 161, 0);
  background-color: rgb(255, 242, 218);
  font-size: 1em;
  border-radius: 10px;
  vertical-align: middle;
}

.md-typeset .admonition,
.md-typeset details {
  box-shadow: none;
  align-self: center;
}

.md-typeset .admonition.right-wide {
  max-width: 500px;
  margin-left: .8rem;
  float: right;
  align-items: center;
}

.md-typeset .admonition.left-inline-wide {
  max-width: 70%;
  margin-right: .8rem;
  float: left;
  align-items: center;
  margin-inline: auto;
}

.md-typeset .admonition.left-wide {
  max-width: 70%;
  margin-right: .8rem;
  align-items: center;
}

.md-typeset .admonition.img,
.md-typeset details.tip {
  border-color: transparent;
  background-color: transparent;
}

.md-typeset .admonition.info,
.md-typeset details.info {
  border-color: rgb(143, 186, 245);
  background-color: rgb(233, 238, 243);
  font-size: 1em;
  border-radius: 10px;
}

.md-typeset .admonition.tip,
.md-typeset details.tip {
  border-color: rgb(178, 218, 2);
  background-color: rgb(237, 250, 182);
  font-size: 1em;
  border-radius: 10px;
}

/* customize footer */
.md-footer {
  background-color: rgb(226, 253, 245);
  color: rgb(226, 253, 245);
}

.md-footer-meta {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5 ), rgba(0, 0, 0, 1)), url("../bkg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
}

/* header background image */
.md-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url("../bkg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
}

/* remove logo */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  display: none;
}
.md-header__button.md-logo {
  margin: 0rem;
  padding: 0rem
}

@media screen and (max-width:76.234375em) {
  .md-nav--primary .md-nav__title {
    display: block;
    background-color: #0E5B5F;
    color: white;
    cursor: pointer;
    height: 5.6rem;
    line-height: 2.4rem;
    padding: 3rem .8rem .2rem;
    position: relative;
    white-space: nowrap
  }
  .md-nav--primary .md-nav__title[for=__drawer] {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../bkg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
  }
}

@media screen and (min-width:76.25em) {
  .md-nav--primary .md-nav__title {
    background: rgb(226, 253, 245);
    box-shadow: 0 0 .4rem .4rem rgb(226, 253, 245);
  }
  .md-nav__title {
    color: #0E5B5F;
  }
}