

.timeline-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  overflow: hidden;
  /*border-left: 3px solid #00ffff;*/
  position: relative;
  /*margin-top: 150px;*/
  height: 110vh;
  margin-left: 425px;
}
.story_timeline{
    margin-top: 50px;
    flex-flow: row wrap ;
    display: flex;
    align-self: center;
    margin-right: 500px;
    color: white;
    margin-left: 60px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background-color: #00ffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  position: relative;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 50px;
  background-color: #00ffff;
  box-shadow: 0 0 10px #00ffff;
}

.timeline-content {
  max-width: 600px;
}

.timeline-year {
  font-weight: bold;
  font-size: 18px;
  color: #00ffff;
}

.timeline-title {
  font-size: 22px;
  margin: 5px 0;
  color: white;
  text-shadow: 0 0 10px #00ffff;
}

.timeline-description {
  font-size: 16px;
  color: #ccc;
}
