This could be extremely easy, but I'm not very familiar with CSS effects, but is it possible to create a background that mimics the gradient of the underlying image?
The background is repeated vertically.
--- The closest I have been able to get is as follows:
body {
background: radial-gradient(ellipse at top right, #0D0934, transparent),
radial-gradient(ellipse at top left, #3A0927, transparent),
radial-gradient(ellipse at bottom left, #0D0934, transparent),
radial-gradient(ellipse at bottom right, #3A0927, transparent);
}
P.S. The visualization seems buggy in this code snippet