@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;
  --sky: #32d4df;
  --violet: #360362;
  --marron: #594848;
  --noir: #000;

  --sd-background-color: var(--sky);
  --sd-heading-color: var(--violet);
  --sd-text-color: var(--noir);
  --sd-primary-color: var(--marron);

  --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;
        }
      }
    }
  }
  a {
    color: var(--princeton-orange);
  }
}

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-heading-color);
  }
}

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

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

.left {
  text-align: right;
  li {
    li::after {
      content: "✍️";
      padding-left: 2rem;
      font-size: 20px;
    }
    li::before {
      content: "";
      padding-right: 2rem;
    }
  }
}

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

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

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

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

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

.homepage {
  background: url("background.png") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}