.circle {
    height: 25px; /* Or any size you prefer */
    width: 25px;  /* Same as height for a circle */
    background-color: #FF1259; /* Optional: Set a background color */
    border-radius: 50%; /* Makes it a circle */
    display: inline-block; /* Allows for inline styling and size control */
    margin: 0 10px;
    z-index: 5;
    position: relative;
}

body {
  overscroll-behavior: none;
}



svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; /* Prevent interaction */
      z-index: 4;
    }

#lineSvg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 4;
  }