I've been experimenting with setting a background color using linear gradient, but now I want to add a blur effect to it. I've tried various codes but haven't had any success so far. Here is the CSS code I have been working on:
body{
background: linear-gradient(100deg, #3B53D6,#4AFAFA);
box-sizing: border-box;
margin: 0;
padding: 0;
height: 200px; /* Make sure the body is visible */
width: 200px;
}
<body>
</body>
I'm still learning CSS, so any help or guidance would be greatly appreciated! Thank you in advance!