
html,
body {
  margin: 0;
  margin: 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: transparent;
  overflow: hidden;
}


.story-fill {
  position: absolute;
  inset: 0;
  background: rgb(253,224,71);
  transform-origin: left;
  transition: transform 0.3s ease;
  opacity: 0.5;
}

#slider {
  display: flex;
  width: 500vw;
  height: 100vh;
  transition: transform 0.8s ease;
}

.slide {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.dot.active {
  background: #fde047;
  transform: scale(1.3);
}