My website background is created using a combination of radial and linear gradients:
background: -webkit-radial-gradient(0% 100%, ellipse cover, rgba(104,128,138,.4) 10%,rgba(138,114,76,0) 40%), linear-gradient(to bottom, rgba(57,173,219,.25) 0%,rgba(42,60,87,.4) 100%), linear-gradient(135deg, #670d10 0%,#092756 100%);
However, when the user scrolls vertically on pages larger than 1920x1080 resolution, a noticeable line appears between the original gradient and its continuation:
https://i.sstatic.net/qcNMz.png
I am looking for a way to remove this visible line so that the transition between gradients remains seamless as users scroll down the page.
Would appreciate any CSS solution to achieve this effect.