/**
 * Curiosity in Design theme for reveal.js. 
 *
 * By Jason Pamental rwt.io
 */
@import url(../fonts/warbler/warbler.css);
@import url(../fonts/gimlet-sans/gimlet-sans.css);
section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
  color: #222;
}

/*********************************************
 * GLOBAL STYLES
 *********************************************/
:root {
  --r-background-color: #0a0a0a;
  --r-main-font: Warbler, Times New Roman, Georgia, serif;
  --r-main-font-size: 42px;
  --r-main-color: #fff;
  --r-block-margin: 20vh;
  --r-heading-margin: 0 0 20px 0;
  --r-heading-font: Warbler, Times New Roman, Georgia, serif;
  --r-heading-color: #fff;
  --r-heading-line-height: 1.2;
  --r-heading-letter-spacing: normal;
  --r-heading-text-transform: none;
  --r-heading-text-shadow: none;
  --r-heading-font-weight: 600;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 2.5em;
  --r-heading2-size: 1.15em;
  --r-heading3-size: 1.3em;
  --r-heading4-size: 1em;
  --r-code-font: monospace;
  --r-link-color: #eaeaea;
  --r-link-color-dark: rgb(198.9, 198.9, 198.9);
  --r-link-color-hover: #ffffff;
  --r-selection-background-color: rgba(234, 234, 234, 0.75);
  --r-selection-color: #fff;
  --r-overlay-element-bg-color: 240, 240, 240;
  --r-overlay-element-fg-color: 0, 0, 0;
}

.reveal-viewport {
  background: #0a0a0a;
  background-color: var(--r-background-color);
}

.reveal {
  font-family: var(--r-main-font);
  font-size: var(--r-main-font-size);
  font-weight: normal;
  color: var(--r-main-color);
}

.reveal ::selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal ::-moz-selection {
  color: var(--r-selection-color);
  background: var(--r-selection-background-color);
  text-shadow: none;
}

.reveal .slides section,
.reveal .slides section > section {
  line-height: 1.3;
  font-weight: inherit;
}

/*********************************************
 * HEADERS
 *********************************************/
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
  margin: var(--r-heading-margin);
  color: var(--r-heading-color);
  font-family: var(--r-heading-font);
  font-weight: var(--r-heading-font-weight);
  line-height: var(--r-heading-line-height);
  letter-spacing: var(--r-heading-letter-spacing);
  text-transform: var(--r-heading-text-transform);
  text-shadow: var(--r-heading-text-shadow);
  word-wrap: break-word;
}

.reveal h1 {
  font-size: var(--r-heading1-size);
}

.reveal h2 {
  font-size: var(--r-heading2-size);
}

.reveal h3 {
  font-size: var(--r-heading3-size);
}

.reveal h4 {
  font-size: var(--r-heading4-size);
}

.reveal h1 {
  text-shadow: var(--r-heading1-text-shadow);
}

/*********************************************
 * OTHER
 *********************************************/
.reveal p {
  margin: var(--r-block-margin) 0;
  line-height: 1.3;
}

/* Remove trailing margins after titles */
.reveal h1:last-child,
.reveal h2:last-child,
.reveal h3:last-child,
.reveal h4:last-child,
.reveal h5:last-child,
.reveal h6:last-child {
  margin-bottom: 0;
}

/* Ensure certain elements are never larger than the slide itself */
.reveal img,
.reveal video,
.reveal iframe {
  max-width: 95%;
  max-height: 95%;
}

.reveal strong,
.reveal b {
  font-weight: bold;
}

.reveal em {
  font-style: italic;
}

.reveal ol,
.reveal dl,
.reveal ul {
  display: inline-block;
  text-align: left;
  margin: 0 0 0 1em;
}

.reveal ol {
  list-style-type: decimal;
}

.reveal ul {
  list-style-type: disc;
}

.reveal ul ul {
  list-style-type: square;
}

.reveal ul ul ul {
  list-style-type: circle;
}

.reveal ul ul,
.reveal ul ol,
.reveal ol ol,
.reveal ol ul {
  display: block;
  margin-left: 40px;
}

.reveal dt {
  font-weight: bold;
}

.reveal dd {
  margin-left: 40px;
}

.reveal blockquote {
  display: block;
  position: relative;
  width: 70%;
  margin: var(--r-block-margin) auto;
  padding: 5px;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}

.reveal blockquote p:first-child,
.reveal blockquote p:last-child {
  display: inline-block;
}

.reveal q {
  font-style: italic;
}

.reveal pre {
  display: block;
  position: relative;
  width: 90%;
  margin: var(--r-block-margin) auto;
  text-align: left;
  font-size: 0.55em;
  font-family: var(--r-code-font);
  line-height: 1.2em;
  word-wrap: break-word;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.reveal code {
  font-family: var(--r-code-font);
  text-transform: none;
  tab-size: 2;
}

.reveal pre code {
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal;
}

.reveal .code-wrapper {
  white-space: normal;
}

.reveal .code-wrapper code {
  white-space: pre;
}

.reveal table {
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.reveal table th {
  font-weight: bold;
}

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.2em 0.5em 0.2em 0.5em;
  border-bottom: 1px solid;
}

.reveal table th[align=center],
.reveal table td[align=center] {
  text-align: center;
}

.reveal table th[align=right],
.reveal table td[align=right] {
  text-align: right;
}

.reveal table tbody tr:last-child th,
.reveal table tbody tr:last-child td {
  border-bottom: none;
}

.reveal sup {
  vertical-align: super;
  font-size: smaller;
}

.reveal sub {
  vertical-align: sub;
  font-size: smaller;
}

.reveal small {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1.2em;
  vertical-align: top;
}

.reveal small * {
  vertical-align: top;
}

.reveal img {
  margin: var(--r-block-margin) 0;
}

/*********************************************
 * LINKS
 *********************************************/
.reveal a {
  color: var(--r-link-color);
  text-decoration: none;
  transition: color 0.15s ease;
}

.reveal a:hover {
  color: var(--r-link-color-hover);
  text-shadow: none;
  border: none;
}

.reveal .roll span:after {
  color: #fff;
  background: var(--r-link-color-dark);
}

/*********************************************
 * Frame helper
 *********************************************/
.reveal .r-frame {
  border: 4px solid var(--r-main-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.reveal a .r-frame {
  transition: all 0.15s linear;
}

.reveal a:hover .r-frame {
  border-color: var(--r-link-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}

/*********************************************
 * NAVIGATION CONTROLS
 *********************************************/
.reveal .controls {
  color: var(--r-link-color);
}

/*********************************************
 * PROGRESS BAR
 *********************************************/
.reveal .progress {
  background: rgba(0, 0, 0, 0.2);
  color: var(--r-link-color);
}

/*********************************************
 * PRINT BACKGROUND
 *********************************************/
@media print {
  .backgrounds {
    background-color: var(--r-background-color);
  }
}
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body[data-speaker-layout=tall] #speaker-controls {
  padding-top: 40px;
  top: 0;
  left: 55%;
  width: 45%;
  height: 100%;
  font-size: 1.25vw;
}

.speaker-controls-notes .value {
  font-size: 1vw;
}

.reveal {
  max-height: 56.25vw;
}
.reveal .fragment {
  display: inline-block;
}
.reveal .slides {
  text-align: left;
}
.reveal .slides section {
  width: 100vw;
  height: 100%;
}
.reveal .slide {
  --h1: 233;
  --h2: 233;
  --s1: 28%;
  --s2: 15%;
  --l1: 11%;
  --l2: 24%;
  --a1: .1;
  --a2: .05;
  --s: 3.5vw; /* control the size*/
  --c1: hsla(var(--h1), var(--s1), var(--l1),var(--a1));
  --c2: hsla(var(--h2), var(--s2), var(--l2),var(--a2));
  background: repeating-conic-gradient(var(--c1) 0 25%, rgba(0, 0, 0, 0) 0 50%) 0 0/calc(4 * var(--s)) calc(2 * var(--s)), conic-gradient(rgba(0, 0, 0, 0) 50%, var(--c2) 0) calc(var(--s) / 2) 0/calc(2 * var(--s)) 1%, radial-gradient(var(--c2) 70%, var(--c1) 72%) 0 0/var(--s) var(--s), linear-gradient(275deg, hsl(var(--h1), var(--s1), var(--l1)), hsl(var(--h2), var(--s2), var(--l2)));
}
.reveal .slide[data-background-image*=dist] {
  background: unset;
}
.reveal .contents {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  justify-content: center;
  position: relative;
  padding-left: 7.5vw;
}
.reveal .contents.lower {
  justify-content: end;
  padding-bottom: 3.5vw;
}
.reveal .unrefined * {
  hanging-punctuation: unset;
  text-wrap: unset;
  font-variation-settings: "opsz" 15;
}
.reveal h1 {
  font-size: 6vw;
  hanging-punctuation: first;
  line-height: 1.15;
  margin-block-start: 0;
  margin-block-end: 0.75vh;
  max-width: 85vw;
  text-wrap: balance;
  text-shadow: 2px 2px 0.5em rgba(0, 0, 0, 0.85), 1px 1px 1px rgba(0, 0, 0, 0.65);
  transition: all 0.2s ease-in-out;
}
.reveal h1.smaller {
  font-size: 4.75vw;
}
.reveal h2 {
  font-size: 3.25vw;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  margin-block-start: 0;
  margin-block-end: 0.75vh;
  max-width: 85vw;
  text-wrap: balance;
  text-shadow: 2px 2px 0.5em rgba(0, 0, 0, 0.85), 1px 1px 1px rgba(0, 0, 0, 0.65);
}
.reveal h2 strong {
  font-weight: 625;
}
.reveal h3 {
  font-family: "Gimlet Sans", Verdana, sans-serif;
  font-style: normal;
  font-size: 1.75vw;
  font-weight: 375;
  font-variation-settings: "opsz" 12;
  margin-block-start: 0;
  margin-block-end: 1vh;
  max-width: 85vw;
  text-shadow: 2px 2px 0.5em rgba(0, 0, 0, 0.85), 1px 1px 1px rgba(0, 0, 0, 0.65);
}
.reveal h4 {
  font-family: "Gimlet Sans", Verdana, sans-serif;
  font-size: 1.5vw;
  font-weight: 375;
  font-variation-settings: "opsz" 12, "ital" 0.65;
  max-width: 85vw;
  text-shadow: 2px 2px 0.5em rgba(0, 0, 0, 0.85), 1px 1px 1px rgba(0, 0, 0, 0.65);
}
.reveal p,
.reveal li {
  font-family: "Gimlet Sans", Verdana, sans-serif;
  font-size: 1.75vw;
  font-weight: 375;
  font-variation-settings: "opsz" 12;
  text-shadow: 2px 2px 0.5em rgba(0, 0, 0, 0.85), 1px 1px 1px rgba(0, 0, 0, 0.65);
}
.reveal ol,
.reveal ul {
  margin-left: 2.5vw;
}
.reveal img {
  width: 100%;
  align-items: center;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0;
}
.reveal a {
  text-decoration: underline;
  text-decoration-skip: ink;
  text-decoration-thickness: 0.05em;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.reveal a:hover, .reveal a:focus {
  text-decoration-color: rgb(255, 255, 255);
  text-decoration-thickness: 0.1em;
}
.reveal .credit {
  position: absolute;
  bottom: 2.5vh;
  left: 7.5vw;
  font-family: "Gimlet Sans", Verdana, sans-serif;
  font-size: 1vw;
  font-weight: 425;
  font-variation-settings: "opsz" 12, "ital" 0.65;
}
.reveal .brian {
  background: linear-gradient(275deg, hsl(6, 96%, 24%), hsl(6, 43%, 12%));
}
.reveal .erik {
  background: linear-gradient(275deg, hsl(190, 96%, 24%), hsl(190, 43%, 12%));
}
.reveal .djr {
  background: linear-gradient(275deg, hsl(221, 96%, 24%), hsl(221, 43%, 12%));
}
.reveal .doug {
  background: linear-gradient(275deg, hsl(97, 96%, 24%), hsl(97, 43%, 12%));
}
.reveal .bottom-right {
  position: absolute;
  display: flex;
  justify-items: center;
  right: 0;
  bottom: 0;
  width: 45%;
  align-content: end;
}
.reveal .center-right {
  position: absolute;
  display: flex;
  justify-items: center;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  align-content: end;
}
.reveal .center-right .frame {
  width: unset;
}
.reveal .matt-1 {
  width: 35vw;
  align-content: end;
}
.reveal .frame {
  width: 35vw;
}
.reveal .title {
  background: linear-gradient(275deg, hsla(250, 28%, 11%, 0.45), hsla(250, 11%, 28%, 0.05)) 65%, url("../images/henry_wondering.jpg");
  background-size: cover;
  background-position-y: center;
}
.reveal .title .contents {
  justify-content: end;
}
.reveal .title .contents h4 {
  padding-bottom: 2.5vh;
}
.reveal .matt {
  background: linear-gradient(275deg, hsla(224, 96%, 24%, 0.65), hsla(224, 43%, 12%, 0.45)), url("../images/me_matt_and_dad.jpeg");
  background-size: cover;
}
.reveal .intellectual-curiosity {
  background: linear-gradient(275deg, hsla(6, 96%, 24%, 0.85), hsla(6, 43%, 12%, 0.75)), url("../images/Dougs_obsession.png");
  background-size: cover;
}
.reveal .idle-curiosity {
  background: linear-gradient(275deg, hsla(224, 96%, 24%, 0.65), hsla(224, 43%, 12%, 0.45)), url("../images/Idle_Henry.jpeg");
  background-size: cover;
  background-position-y: bottom;
}
.reveal .morbid-curiosity {
  background: linear-gradient(275deg, hsla(145, 96%, 24%, 0.65), hsla(145, 43%, 12%, 0.45)), url("../images/morbid_lambys.jpeg");
  background-size: cover;
  background-size: 120vw;
  background-position-y: -25vh;
}
.reveal .just,
.reveal .really {
  --s1: 20%;
  --s2: 10%;
}
.reveal .neuro {
  --h1: 25;
  --h2: 25;
  --s1: 48%;
  --s2: 35%;
}
.reveal .my-take {
  --h1: 125;
  --h2: 165;
  --s1: 68%;
  --s2: 25%;
  --l1: 5%;
  --l2: 24%;
}
.reveal .brian-bike {
  background: linear-gradient(275deg, hsla(222, 94%, 6%, 0.75), hsla(221, 43%, 3%, 0.65)), url("../images/brian.jpeg");
  background-size: cover;
}
.reveal .canyon {
  background: linear-gradient(275deg, hsla(190, 96%, 24%, 0.75), hsla(190, 43%, 12%, 0.55)), url("../images/Erik_Canyon.jpg");
  background-size: cover;
  background-position-y: bottom;
}
.reveal .bvg {
  background: linear-gradient(275deg, hsla(190, 96%, 24%, 0.75), hsla(190, 43%, 12%, 0.55)), url("../images/Erik_BVG.jpg");
  background-size: cover;
  background-position-y: center;
}
.reveal .books {
  background: linear-gradient(275deg, hsla(190, 96%, 24%, 0.75), hsla(190, 43%, 12%, 0.55)), url("../images/Erik_books.webp");
  background-size: cover;
  background-position-y: bottom;
}
.reveal .club {
  background: linear-gradient(275deg, hsla(221, 96%, 24%, 0.95), hsla(221, 43%, 12%, 0.85)), url("../images/DJR_FotMC.png");
  background-size: cover;
  background-position-y: bottom;
}
.reveal .gimlet {
  background: linear-gradient(275deg, hsla(221, 96%, 24%, 0.95), hsla(221, 43%, 12%, 0.85)), url("../images/DJR_gimlet_sans.png");
  background-size: cover;
  background-position-y: bottom;
}
.reveal .linotype {
  background: linear-gradient(275deg, hsla(97, 96%, 24%, 0.75), hsla(97, 43%, 12%, 0.65)), url("../images/Doug_linotype_logo.png");
  background-size: cover;
  background-position-y: bottom;
}
.reveal .bike-geek {
  background: linear-gradient(275deg, hsla(222, 94%, 6%, 0.75), hsla(221, 43%, 3%, 0.65)), url("../images/bike_geek.jpeg");
  background-size: cover;
  background-position-y: bottom;
}