<style>
.sample {
inline-size: 50vmin;
block-size: 35vmin;
background: linear-gradient(
to bottom right,
#FFD945,
#32BA7C
);
border-radius:30px;
position: relative;
}
.sample::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
to right,
#FFD945,
#32BA7C
);
z-index: -1;
transform: translateY(15%) scale(.85);
filter: blur(30px);
}
</style>