I am currently working on adding a circle gradient to the top right corner of this webpage, but I would like it to be placed over an image instead.
Here is what I have so far:
However, I envision it looking more like this:
Below is the CSS code for my top-right-gradient:
.top-right-gradient{
position: absolute;
top: -40%;
right: -14%;
width: 800px;
height: 800px;
border-radius: 50%;
background: linear-gradient(#ee9ca7, #ec4357);
}