/** Apply blur by default **/
.App-header {
background: rgba(0, 0, 0, 0.5) !important;
backdrop-filter: blur(15px) saturate(150%);
}
/** Or apply blur only when page is scrolled **/
.scrolled .App-header {
background: rgba(0, 0, 0, 0.5) !important;
backdrop-filter: blur(15px) saturate(150%);
}