CSS radial gradient with bottom linear
here the background of this page is a radiel gradient, but i want the bottom to gradually fade to black without the top changing, any ideas?
.radial-gradient-homepage {
background: rgb(51, 23, 45);
background:
radial-gradient(
circle,
rgb(0, 0, 0) 8%,
#5f154a 40%,
rgba(0, 0, 0, 1) 100%
)
}