body {
  background-color: black;
  color: white;
}

 #svg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none; /* Let's you click through the line */
            z-index: 9999;        /* Puts the line on top so you can see it */
        }

        /* Styling the line so it stands out clearly against raw text */
        #connecting-curve {
            stroke: #ff0000;     /* Bright Red so you can't miss it */
            stroke-width: 4px;   /* Nice and thick */
            fill: none;
        }
        
#p1, #p2 {
            width: fit-content;
            display: block; /* Keeps them on their own line like normal paragraphs */
        }