Add the "dark-overlay" class to any elements that you want to have the background overlay on.
.dark-overlay, .dark-overlay > * {
position:relative;
}
.dark-overlay::before {
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.3);
}