@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans+Mono:ital,wght@0,400..700;1,400..700&display=swap");
:root {
  --subject-primary: #bbe148;
}

.slide-background.present.intro {
  background-color: white;
}

.slides section {
  font-family: "Noto Sans Display", sans-serif;
}
.slides section.intro {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 2em;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  background-color: white;
  font-size: 2em;
}
.slides section.intro h1 {
  width: 100%;
  box-sizing: border-box;
  padding-right: 293px;
  font-size: 3em;
  margin-bottom: 0.5em;
}
.slides section.intro p {
  font-size: 1em;
  text-align: left;
}
.slides section.intro .subject {
  font-size: 1.5em;
  margin-bottom: 1em;
}
.slides section.intro .subject .marker {
  display: inline-block;
  vertical-align: middle;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.5em;
  margin-bottom: 0.1em;
  border-radius: 50%;
  background-color: var(--subject-primary);
}
.slides section.intro .school {
  margin-top: 0.5em;
}
.slides section.intro .icon {
  position: absolute;
  right: -3em;
  box-shadow: none;
}
.slides section.outro {
  background-color: white;
  text-align: left;
}
.slides section.outro p.end {
  font-size: 3em;
  margin-bottom: 0.5em;
  text-align: left;
}
.slides section.two-sides {
  width: 100%;
}
.slides section.two-sides .sides {
  width: 100%;
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.slides section.two-sides .sides .side {
  width: 50%;
  flex-grow: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  padding-right: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slides section.two-sides .sides .side:not(:first-child) {
  padding-left: 1em;
  padding-right: 0;
}
.slides section.two-sides .sides .side .code-wrapper {
  width: 100%;
  margin: 0;
}
.slides section.two-sides .sides .side .code-show {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 0.5em;
}
.slides section h2 {
  font-size: 3.5em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: uppercase;
  text-shadow: none;
  word-wrap: break-word;
  color: black;
  margin-bottom: 0.5em;
  text-align: center;
}
.slides section h3 {
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: uppercase;
  text-shadow: none;
  word-wrap: break-word;
  color: black;
  margin-bottom: 0.5em;
  text-align: center;
}
.slides section p {
  font-size: 2em;
  line-height: 1.5;
  margin: 0 0 1em 0;
  text-align: center;
}
.slides section a {
  color: var(--subject-primary);
  text-decoration: none;
  font-weight: bold;
}
.slides section img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5em;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2078431373);
}
.slides section img.auto-fit {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.slides section img.auto-fit-contain {
  object-fit: contain;
  max-height: 50vh;
  width: 100%;
  height: 100%;
}
.slides section ul, .slides section ol {
  text-align: left;
  font-size: 2rem;
  line-height: 1.5;
  display: inline-block;
  margin: 0 0 0 1em;
}
.slides section .key {
  display: inline-block;
  margin: 0 0.5em;
  padding: 1.5em 1em;
  border-radius: 0.5em;
  border-left: 0.2em solid var(--subject-primary);
  background-color: #ececec;
  font-size: 1.2em;
  text-align: left;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.0823529412);
}
.slides section .key p {
  margin: 0;
  text-align: left;
}
.slides section .shadow {
  text-shadow: 3px 3px 8px #000000 !important;
}
.slides section *:not(pre) > code {
  font-family: "Ubuntu Sans Mono", monospace;
  text-transform: none;
  background-color: #3a3a3a;
  color: white;
  border-radius: 10px;
  padding: 5px 13px;
  margin: 0 2px;
  line-height: 1.6em;
  white-space: pre;
}
.slides section pre > code {
  font-family: "Ubuntu Sans Mono", monospace;
  border-radius: 0;
  font-size: 0.8em;
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal;
  border: 0;
  text-align: left;
  background-color: #f5f5f5;
}
.slides section pre > code::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
.slides section pre > code::-webkit-scrollbar-corner {
  background-color: var(--subject-primary);
}
.slides section pre > code::-webkit-scrollbar-track {
  background-color: #c6c6c9;
}
.slides section pre > code::-webkit-scrollbar-thumb {
  background-color: var(--subject-primary);
  border-radius: 3px;
  width: 5px;
}
.slides section pre.code-wrapper {
  position: relative;
  box-sizing: border-box;
  border: 0;
  border-radius: 0.5em;
  margin: 1em 0;
  font-size: 1.4em;
  overflow: hidden;
}
.slides section pre.code-wrapper .hljs-ln-numbers {
  position: sticky;
  left: -9px;
  background-color: #f5f5f5;
  padding: 0 0.5em;
  opacity: 1;
  color: #000000;
}
.slides section[data-background-image] h2 {
  color: white;
}
.slides section table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 1.5em;
}
.slides section table th {
  background-color: #f5f5f5;
  border: 1px solid #c7c6c6;
  padding: 0.5em;
  text-align: center;
}
.slides section table td {
  border: 1px solid #c7c6c6;
  padding: 0.5em;
}
.slides section table tr.highlight {
  background-color: #f5f5f5;
}
.slides section table tr.highlight td {
  font-weight: bold;
  border-top: 5px solid #c7c6c6;
}

.reveal .controls {
  color: var(--subject-primary);
  box-shadow: 3px 3px black;
  transform: translateY(-25px);
}
.reveal .controls .controls-arrow {
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.3333333333));
}

.reveal .progress {
  height: 10px;
  background: #c7c6c6;
  background-image: url("../img/pattern-arrow-transparent-mono.png");
  background-size: 24px;
  background-position: center center;
  color: var(--subject-primary);
}
.reveal .progress span {
  opacity: 0.9;
}

.reveal .slide-number {
  background-color: #131313 !important;
  bottom: 10px !important;
  right: 0px !important;
  font-size: 14px !important;
  padding: 5px 10px;
  border-top-left-radius: 5px;
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: bold;
}
.reveal .slide-number a {
  text-decoration: none;
}

.reveal .slide-number .slide-number-delimiter {
  margin: 0 7px;
}

.mt-1 {
  margin-top: 1em !important;
}

.mb-1 {
  margin-bottom: 1em !important;
}

b {
  font-weight: bold;
}

/*# sourceMappingURL=cajthaml-new.css.map */
