@font-face {
  font-family: Teko;
  src: url(Teko/Teko-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Source Sans";
  src: url(Source_Sans_3/SourceSans3-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Source Sans Italic";
  src: url(Source_Sans_3/SourceSans3-Italic-VariableFont_wght.ttf);
}

:root {
  --seal-brown: #6c3316ff;
  --princeton-orange: #f89321ff;
  --sable: #f1ddb6;
  --violet: #360362;
  --marron: #594848;
  --noir: #000;

  --sd-background-color: white;
  --sd-heading-color: #19b8d5;
  --sd-text-color: var(--noir);
  --sd-primary-color: #fdba1d;

  --sd-heading1-size: 8.5vw;
  --sd-heading1-line-height: 1;
  --sd-heading2-size: 5vw;
  --sd-heading2-line-height: 1;
  --sd-text-size: 2.2vw;
  --sd-text-line-height: 1.2;
  --sd-caption-font-size: 1vw;
  --sd-caption-line-height: 1;

  --sd-caption-color: rgba(255, 255, 255, 0.7);
  --sd-caption-bgcolor: rgba(36, 36, 36, 0.7);
}

body {
  font-family: "Source Sans", sans-serif;
  ul {
    list-style: none;

    li::before {
      content: "🎨";
      padding-right: 2rem;
    }

    li {
      margin-bottom: 15px;
      margin-top: 10px;
      ul {
        li::before {
          content: "🖌️";
          font-size: 20px;
        }
      }
    }
  }
}

h2 {
  font-family: Teko, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.speaker {
  img {
    border: 2px solid var(--sd-primary-color);
    border-radius: 100%;
  }
}

.logo {
  img {
    border: none;
    border-radius: 0%;
  }
}

.chapter {
  h2 {
    color: var(--sd-primary-color);
  }
}

.split {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.split > div {
  width: 50%;
  padding: 1vh 1vw;
}

.bottom-right {
  position: absolute;
  right: 2vw;
  bottom: 2vh;
}

.bottom-left {
  position: absolute;
  left: 2vw;
  bottom: 8vh;
}

.bottom-center {
  position: absolute;
  left: 50%;
  bottom: 10vh;
  transform: translateX(-50%);
}
