Вот что я нашел!
HTML
<div class="bg-image"></div>
CSS
body, html {
height: 100%;
margin: 0;
}
.bg-image {
/* The image used */
background-image: url("https://i.imgur.com/R4jk5aR.jpg");
/* Add the blur effect */
filter: blur(8px);
-webkit-filter: blur(8px);
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}