:root {
  --amber: #ffbf00;
  --american-rose: #ff033e;
  --azure: #007fff;
  --majorelle-blue: #6050dc;
  --smoky-black: #100c08;
  --snow: #fffafa;
  --spacing: 1rem;
  --font-lg: 1.5rem;
  --font-xl: 1.75rem;
  --font-2xl: 2rem;
  --font-3xl: 2.5rem;
  --font-5xl: 3rem;
}

body {
  background-color: var(--snow);
  color: var(--smoky-black);
  font-size: var(--font-2xl);
  line-height: 1;
}

.slide {
  padding: 4rem;
  font-size: var(--font-2xl);
  margin-bottom: 8rem;
}

.slide header {
  margin-bottom: 4rem;
}

.slide-full {
  height: 100vh;
}


@media screen and (max-width: 767px){
  .slide {
    padding: 0.25rem;
  }
}

.title {
  color: var(--smoky-black);
  font-size: var(--font-3xl);
}
.title-tiny {
  color: rgba(0, 0, 0, 0.69);
  font-size: var(--font-2xl);
  text-align: right;
}

.talk-title {
  margin-top: 8rem;
  font-size: var(--font-5xl);
  max-width: 24ch;
}

.subtitle {
  font-size: var(--font-2xl);
}

.footer {
  font-size: var(--font-lg);
  bottom: 4rem;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: var(--amber);
}

ul li {
  padding: 0.25rem;
}

.logos {
  width: 25vw;
}
.logos img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.images img {
  display: inline-block;
  width: 36rem;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

