I've found similar questions, but nothing that seems to answer my problem (if it's even possible).
I'm trying to stack multiple gradients starting with this (to right):
background: linear-gradient(to right, #3467a6, #c0d8dc 20%, #f3fbe6 50%, #c0d8dc 80%, #3467a6)
Here is a working Stack Snippet
.content-background {
width: 100%;
height: 400px;
background: linear-gradient(to right, #3467a6, #c0d8dc 20%, #f3fbe6 50%, #c0d8dc 80%, #3467a6),
linear-gradient(to bottom, #3467a6 50%, #481f42);
}
<div class="content-background"></div>
Now, what I'm trying to do is also create an additional gradient "to bottom" so the blue slowly turns to maroon as you scroll down the page.
Can this be done?
You can find my Fiddle here: https://jsfiddle.net/spaceout/se2a97du/12/