body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #181818;
}

.story-container {
  text-align: center;
  background: #424242;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 420px;
}

.story-image img {
  max-width: 400px;
  max-height: 400px;
  cursor: pointer;
  border-radius: 4px;
  
}

.story-text {
  margin: 20px 0;
  font-size: 24px;
  color: white;
}

#story-caption {
  max-width: 100%;
}

.story-progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #87c9ff;
}