:root {
  --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-background-color: #fafafa;
  --sd-heading-color: rgba(36, 36, 36, 0.97);
  --sd-text-color: rgba(36, 36, 36, 0.87);
  --sd-primary-color: rgb(37, 186, 146);
  --sd-caption-color: rgba(255, 255, 255, 0.7);
  --sd-caption-bgcolor: rgba(36, 36, 36, 0.7);

  /* SpeakerView */
  --sd-sv-timer-size: 80px;
  --sd-sv-text-size: 40px;
  --sd-sv-text-line-height: 1.2;
  --sd-sv-background-color: #242424;
  --sd-sv-text-color: rgba(255, 255, 255, 0.87);
}

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

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

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

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

.logo {
  img {
    margin-top: 10vh;
    border: none;
    border-radius: 0%;
  }
}

ul {
  line-height: 200%;
  li {
    ul {
      line-height: 120%;
    }
  }
}

.top-left-corner-image {
    position: absolute;
    top: 10px;
    transform: translateX(-100%);
    max-height: 20vh;
}

.bottom-left-corner-image {
    position: absolute;
    bottom: -10px;
    transform: translateX(-160%);
    max-height: 20vh;
}

.bottom-right-corner-image {
    position: absolute;
    bottom: 50px;    
    max-height: 30vh;    
}