How to make such a background ?
tried to pull it alone
`@media (orientation: landscape) { /* put a blurred image in the background, just for pretty presentation */ body::before { content: ''; display: block; height: 100vh; width: 100%; background: url("адрес/1.jpeg") center/cover; -webkit-filter: blur(5vh); filter: blur(5vh); -webkit-transform: scale(1.2); transform: scale(1.2); opacity: 0.4; }`
But it does not come out.