/* Add this to your stylesheet */
#timeline {
  position: relative; /* Needed for absolute positioning of lines */
}

#gray-line, #mint-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
}

#gray-line {
  background-color: #e5e7eb; /* Tailwind's gray-300 */
  
}

#mint-line {
  background-color: #55DA94;
  height: 0; /* Will be filled by JS */
  
}

#timeline-connector {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%; /* Will be adjusted by JS */
  pointer-events: none; /* Allows clicking through to content */
  z-index: 10;
}

@media (min-width: 1538px) {
  html {
    font-size: 125%;
  }
}

@layer utilities {
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

html{
  scroll-padding-top: 4.5rem;
}
