@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300&display=swap');

:root {
  --md-primary-fg-color: #9649cb;
  --md-primary-fg-color--light: #9649cb !important;
  --md-primary-fg-color--dark: #7f0799;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --md-text-font-family: 'Manrope' !important;
  --md-code-font-family: 'Space Mono', monospace !important;
  color: #000 !important;
}

figcaption {
  font-size: .7em;
  font-weight: 700;
}

/* bullet journal header 
.md-header {
  background-color: transparent;
  background-image: url(/assets/images/bullet-journal.jpg);
  background-repeat: repeat-x;
} */

.twemoji {
  color: #9649cb;
}

.md-tabs {
  background-color: transparent;
  color: #fff;
  font-family: 'Shadows Into Light Two', cursive;
}

.md-tabs__link {
  font-size: .9rem;
}


.md-header__title {
  font-family: 'Shadows Into Light Two', cursive;
  font-size: 2.5em;
  color: #fff;
}

.md-header__button {
  color: #fff !important;
}

.md-typeset h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Shadows Into Light Two' !important;
}

.md-typeset a,
.md-typeset a::before {
  transition: color 125ms;
}

.md-typeset a:hover {
  text-decoration: underline;
  color: #7f0799;
}

.md-nav__link:hover {
  text-decoration: underline;
  color: #7f0799 !important;
}

[data-md-color-accent="indigo"] {
  --md-accent-fg-color: #7f0799 !important;
}

img.spongebob {
  width: 400px !important;
}

img.avatar {
  width: 150px;
}

.info {
  color: #7f0799;
}

.post-summary {
  font-family: 'Shadows Into Light Two';
  font-size: 1.2em;
}

/* picture gallery */

/* ############ 8. Gallery ############ */

.gallery {
  max-width: auto;
  margin: auto;
}

.gallery h1 {
  text-align: center;
  color: #223055;
  padding: 0 1rem;
  margin-bottom: .5rem;
}

.galleryWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: .5em;
  grid-auto-flow: row dense;
}

.galleryWrap img[src$="_w.jpg"] {
  grid-column-end: span 2;
}

.galleryWrap img[src$="_p.jpg"] {
  grid-row-end: span 2;
}

.galleryWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}