@font-face {
  font-family: "Overpass";
  src: url("../../assets/fonts/overpass.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Overpass Mono";
  src: url("../../assets/fonts/overpass-mono.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/*********************************************
 * GLOBAL STYLES
 *********************************************/
:root {
  --r-background-color: #fcfcfc;
  --r-main-font: Overpass, system-ui, sans-serif;
  --r-main-font-size: 40px;
  --r-main-color: #24292e;
  --r-block-margin: 20px;
  --r-heading-margin: 0 0 20px 0;
  --r-heading-font: Overpass, system-ui, sans-serif;
  --r-heading-color: #24292e;
  --r-heading-line-height: 1.2;
  --r-heading-letter-spacing: normal;
  --r-heading-text-transform: uppercase;
  --r-heading-text-shadow: none;
  --r-heading-font-weight: normal;
  --r-heading1-text-shadow: none;
  --r-heading1-size: 3.77em;
  --r-heading2-size: 2.11em;
  --r-heading3-size: 1.55em;
  --r-heading4-size: 1em;
  --r-code-font: Overpass Mono, ui-monospace, monospace;
  --r-link-color: #13DAEC;
  --r-link-color-dark: rgb(16.15, 185.3, 200.6);
  --r-link-color-hover: rgb(66.2, 225.4, 239.8);
  --r-selection-background-color: #FF5E99;
  --r-selection-color: #fff;
  --r-overlay-element-bg-color: 240, 240, 240;
  --r-overlay-element-fg-color: 0, 0, 0;
}

.reveal-viewport {
  background: #fcfcfc;
  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 {
  font-size: 36px;
}

.reveal .bg-rings {
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 1200px;
  height: 1200px;
  pointer-events: none;
  z-index: 0;
}

.bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(78, 42, 142, 0.22);
  background: radial-gradient(circle, rgba(196, 181, 217, 0.14) 0%, rgba(236, 231, 243, 0.08) 60%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-ring:nth-child(1) {
  width: 250px;
  height: 250px;
  --ring-lo: 0.165;
  --ring-hi: 0.52;
  animation: ring-breathe 4.7s ease-in-out 0.5s infinite alternate;
}

.bg-ring:nth-child(2) {
  width: 380px;
  height: 380px;
  --ring-lo: 0.15;
  --ring-hi: 0.49;
  animation: ring-breathe 5.4s ease-in-out 1s infinite alternate;
}

.bg-ring:nth-child(3) {
  width: 510px;
  height: 510px;
  --ring-lo: 0.135;
  --ring-hi: 0.46;
  animation: ring-breathe 6.1s ease-in-out 1.5s infinite alternate;
}

.bg-ring:nth-child(4) {
  width: 640px;
  height: 640px;
  --ring-lo: 0.12;
  --ring-hi: 0.43;
  animation: ring-breathe 6.8s ease-in-out 2s infinite alternate;
}

.bg-ring:nth-child(5) {
  width: 770px;
  height: 770px;
  --ring-lo: 0.105;
  --ring-hi: 0.4;
  animation: ring-breathe 7.5s ease-in-out 2.5s infinite alternate;
}

.bg-ring:nth-child(6) {
  width: 900px;
  height: 900px;
  --ring-lo: 0.09;
  --ring-hi: 0.37;
  animation: ring-breathe 8.2s ease-in-out 3s infinite alternate;
}

.bg-ring:nth-child(7) {
  width: 1030px;
  height: 1030px;
  --ring-lo: 0.075;
  --ring-hi: 0.34;
  animation: ring-breathe 8.9s ease-in-out 3.5s infinite alternate;
}

.bg-ring:nth-child(8) {
  width: 1160px;
  height: 1160px;
  --ring-lo: 0.06;
  --ring-hi: 0.31;
  animation: ring-breathe 9.6s ease-in-out 4s infinite alternate;
}

@keyframes ring-breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.97);
    opacity: var(--ring-lo, 0.18);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: var(--ring-hi, 0.55);
  }
}
.reveal .bg-rings-tl {
  position: absolute;
  top: -25%;
  left: -15%;
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
}

.bg-rings-tl .bg-ring {
  border-color: rgba(123, 94, 167, 0.22);
  background: radial-gradient(circle, rgba(196, 181, 217, 0.14) 0%, rgba(236, 231, 243, 0.08) 60%, transparent 100%);
}

.bg-rings-tl .bg-ring:nth-child(1) {
  width: 220px;
  height: 220px;
  --ring-lo: 0.145;
  --ring-hi: 0.47;
  animation: ring-breathe 5.8s ease-in-out 2.2s infinite alternate;
}

.bg-rings-tl .bg-ring:nth-child(2) {
  width: 340px;
  height: 340px;
  --ring-lo: 0.13;
  --ring-hi: 0.44;
  animation: ring-breathe 6.6s ease-in-out 2.9s infinite alternate;
}

.bg-rings-tl .bg-ring:nth-child(3) {
  width: 460px;
  height: 460px;
  --ring-lo: 0.115;
  --ring-hi: 0.41;
  animation: ring-breathe 7.4s ease-in-out 3.6s infinite alternate;
}

.bg-rings-tl .bg-ring:nth-child(4) {
  width: 580px;
  height: 580px;
  --ring-lo: 0.1;
  --ring-hi: 0.38;
  animation: ring-breathe 8.2s ease-in-out 4.3s infinite alternate;
}

.bg-rings-tl .bg-ring:nth-child(5) {
  width: 700px;
  height: 700px;
  --ring-lo: 0.085;
  --ring-hi: 0.35;
  animation: ring-breathe 9s ease-in-out 5s infinite alternate;
}

em {
  font-style: normal;
  position: relative;
  z-index: 1;
}

em::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  bottom: 10%;
  background: var(--highlight-color, rgba(78, 42, 142, 0.25));
  z-index: -1;
  transform: rotate(-1deg);
  transform-origin: left;
  width: 0%;
}

em.highlight-active::before {
  animation: highlight-draw 0.6s ease-out 0.3s forwards;
}

@keyframes highlight-draw {
  to {
    width: calc(100% + 4px);
  }
}
h1, h2, h3, p, li {
  color: #24292e;
}

h1 {
  font-weight: 900 !important;
  font-size: 3.5rem !important;
  background: linear-gradient(135deg, #4e2a8e 0%, #7b5ea7 50%, #4e2a8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h1 em {
  -webkit-text-fill-color: #4e2a8e;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

h2 {
  font-weight: 900 !important;
  font-size: 2.5rem !important;
}

h3 {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
}

p, li {
  font-size: 1.3rem;
  line-height: 1.5;
}

.big-text {
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.3;
  color: #24292e;
  box-shadow: none !important;
}

.section-title, .titlescreen, .centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 100vh;
}
.section-title h1, .titlescreen h1, .centered h1 {
  font-size: 4rem !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  margin: 0 !important;
}
.section-title h2, .titlescreen h2, .centered h2 {
  font-size: 2rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  margin-top: 0.6rem !important;
  color: #6a737d;
}
.section-title p, .titlescreen p, .centered p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.section-title .attribution, .titlescreen .attribution, .centered .attribution {
  font-size: 1.2rem;
  font-weight: 400;
  color: #6a737d;
  margin-top: 1.5rem !important;
}

.content-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  height: 100%;
  padding: 2.5rem 3.5rem !important;
  box-sizing: border-box;
}
.content-slide h1 {
  font-size: 2rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}
.content-slide h2 {
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  color: #6a737d;
  margin: 0.15em 0 1.2em 0 !important;
  text-align: left !important;
}
.content-slide .slide-body {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-slide .columns {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.content-slide .columns .col {
  flex: 1;
  text-align: center;
}
.content-slide .columns .col h3 {
  margin-bottom: 0.8rem !important;
}

.thank-you {
  font-size: 5rem !important;
  font-weight: 900 !important;
  margin-bottom: 1rem !important;
  background: linear-gradient(135deg, #4e2a8e 0%, #7b5ea7 50%, #4e2a8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-icon {
  height: 0.9em;
  width: auto;
  vertical-align: middle;
  margin-right: 0.4em;
  display: inline-block;
}

.github-icon,
.link-icon,
.luma-icon {
  height: 1em;
  width: auto;
  vertical-align: -0.1em;
  margin-right: 0.3em;
}

.links-compact p {
  margin: 0.3rem 0 !important;
  font-size: 1.5rem;
  font-weight: 700;
}

.reveal .slides section .fragment:not(.fade-drift-up):not(.wipe-in) {
  transition: none !important;
}

.reveal .slides section .fragment:not(.fade-drift-up):not(.wipe-in).visible {
  opacity: 1;
}

.reveal .slides section .fragment.fade-drift-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.reveal .slides section .fragment.fade-drift-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal .slides section .fragment.wipe-in {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s ease-out;
}
.reveal .slides section .fragment.wipe-in.visible {
  clip-path: inset(0 0 0 0);
}

.reveal pre,
.reveal pre *,
.reveal pre code,
.reveal pre code *,
.reveal .hljs-ln-line,
.reveal [data-line-numbers] {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

.reveal .slides section pre .highlight-line {
  transition: none !important;
}

.quote-mark {
  display: inline;
}

.em-fade {
  display: inline;
  position: relative;
}
.em-fade em, .em-fade span {
  display: inline;
}
.em-fade span.fragment.fade-in:not(.visible) {
  display: none;
}

.heavy {
  font-weight: 900;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #24292e;
}

.section-logo {
  width: 300px;
  height: 300px;
  margin-bottom: 1rem;
}

.reveal .progress {
  height: 8px;
  background: rgba(36, 41, 46, 0.15);
}
.reveal .progress span {
  background: #4e2a8e;
}

.title-text {
  text-align: center;
}
.title-text .accent {
  font-weight: 900 !important;
  font-style: italic;
}
.title-text h1, .title-text h2 {
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.15 !important;
  opacity: 0;
}
.title-text h1 {
  font-size: 3.5rem !important;
}
.title-text h2 {
  font-weight: 400 !important;
  font-size: 2rem !important;
  margin-top: 0.5rem !important;
  color: #6a737d;
}

.accent-border {
  border-left: 6px solid #4e2a8e;
  padding-left: 0.8em;
}

.speaker-grid {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-top: 2rem;
}
.speaker-grid .speaker {
  text-align: center;
  opacity: 0;
}
.speaker-grid .speaker .headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 10px solid #c4b5d9;
}
.speaker-grid .speaker h3 {
  margin-bottom: 0.3rem !important;
}
.speaker-grid .speaker p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0 !important;
}

.reveal blockquote {
  border: none;
  box-shadow: none;
  border-left: 6px solid #c4b5d9;
  padding-left: 1.5rem;
  background: transparent;
}