/** Main body **/
body {
  color: #333;
  display: flex;
  font-family: "Catamaran";
  justify-content: center;
}

@media screen and (max-width: 900px) {
  body {
    margin: 0px;
  }
}
@media screen and (min-width: 900px) {
  .stripe-wrapper {
    margin-top: 8px;
  }
}
.stripe-wrapper {
  background: repeating-linear-gradient(135deg, #d62770, #d62770 100px, #ffc60d 100px, #ffc60d 200px, #176de6 200px, #176de6 300px);
}

.wrapper {
  /* Visually this creates a 16px striped border all the way around, but
     there seems to be an unexplained extra 4px at the top. */
  padding: 12px 16px 16px 16px;
}

a {
  color: #000;
}

@font-face {
  font-family: "Catamaran";
  font-weight: 400;
  font-display: swap;
  src: url("/assets/font/catamaran-v6-latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Catamaran";
  font-weight: 800;
  font-display: swap;
  src: url("/assets/font/catamaran-v6-latin-800.woff") format("woff");
}
.inline-icon {
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  width: 14px;
}

.container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin: 4px auto 0 auto;
  padding: 8px 20px 20px 20px;
  /* Rotate between pink -> yellow -> blue headings */
  /* blog pages */
  /* non-blog pages */
}
.container .title {
  font-size: 28pt;
  font-weight: 800;
  margin-bottom: 8px;
  min-height: 32px;
  text-align: center;
}
.container .title a {
  text-decoration: none;
}
.container .section:nth-child(1) .section-title {
  background-color: #d62770;
}
.container .section:nth-child(2) .section-title {
  background-color: #ffc60d;
  -webkit-text-stroke: 1px #666;
}
.container .section:nth-child(3) .section-title {
  background-color: #176de6;
}
.container h1:nth-of-type(3n + 1) {
  background-color: #d62770;
}
.container h1:nth-of-type(3n + 2) {
  background-color: #ffc60d;
}
.container h1:nth-of-type(3n + 3) {
  background-color: #176de6;
}
.container .section-title, .container h1 {
  color: #fff;
  font-size: 20pt;
  font-weight: 800;
  padding: 2px 8px;
}
.container .post-content {
  max-width: 800px;
}
.container .post-content blockquote {
  border-left: 4px solid #ffc60d;
  margin: 0;
  padding-inline-start: 1em;
  padding-inline-end: 1em;
}
.container .post-content hr {
  border-bottom: 2px solid;
  background-color: #d62770;
}
.container .post-content .post-title {
  font-size: 24pt;
  font-weight: 800;
  line-height: 1.4em;
}
.container .post-content .post-date {
  color: #666;
}
.container .post-content .post-divider {
  border-bottom: 4px solid #176de6;
  margin: 8px 0;
}
.container .post-content .image-row-1 img, .container .post-content .image-row-1 video {
  max-width: calc(100vw - 72px);
  height: auto;
}
.container .post-content .image-row-2 img, .container .post-content .image-row-2 video {
  max-width: calc(50vw - 50px);
  height: auto;
}
.container .post-content .image-row-3 img, .container .post-content .image-row-3 video {
  max-width: calc(33vw - 35px);
  height: auto;
}
.container .post-content .image-row-4 img, .container .post-content .image-row-4 video {
  max-width: calc(50vw - 50px);
  height: auto;
}
.container .post-content .end-matter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .container .post-content .end-matter {
    flex-direction: column;
  }
}
.container .post-content .end-matter .next-link, .container .post-content .end-matter .prev-link {
  flex: 1;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
  min-width: 0;
  max-width: calc(95vw - 65px);
}
.container .post-content .end-matter .next-link {
  margin-right: 12px;
}
.container .post-content .end-matter .home-link {
  text-align: center;
}
.container .post-content .end-matter .prev-link {
  margin-left: 12px;
  text-align: right;
}
.container .content {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: center;
}
.container .content .photo {
  border: 8px solid #fff;
  border-radius: 16px;
  margin-left: 10px;
  height: 360px;
  width: 270px;
}
.container .content .photo-caption {
  text-align: center;
  font-size: 10pt;
}
.container .content .text-container {
  max-width: 500px;
}

p + ul {
  margin-top: -1em;
}

ul, ol {
  padding-left: 1.3em;
}

hr {
  border: none;
  background: gradient(radial, 50% 50%, 0, 50% 50%, 100, from(#efefef), to(#fff));
  background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 100, from(#efefef), to(#fff));
  height: 1px;
}

/*# sourceMappingURL=site.css.map */