#scroll-indicator {
    background: linear-gradient(
      90deg,
      rgba(0, 239, 255, 1) 0%,
      rgba(112, 23, 210, 1) 35%,
      rgba(203, 3, 32, 1) 75%,
      rgba(255, 126, 0, 1) 100%
    );
    height: 5px;
    width: 0%;
    position: fixed;
    top: 0;
    transition: all 0.2s linear;
    border-radius: 5px;
    z-index: 1000;
}