This is a demo of CSS backdrop-filter and it's fall-back for when it's not working
Backdrop-filter in CSS snippet will look like this:
section {
background: hsla(213, 16%, 22%, .85);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}