I have set the background colour to a linear gradient and I want the background colour to be a blur. I have tried a few codes but couldn't make it work. Here is my code:
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 am learning CSS, please help me! Thank you in advance!