body {
position: relative; /* make body a stacking context */
margin: 0;
}
/* Takeover layer */
body::before {
content: "";
position: fixed; /* stays put on scroll */
inset: 0; /* top:0; right:0; bottom:0; left:0 */
background-image: url("https://www.mobileeurope.co.uk/wp-content/uploads/2024/07/gsma_foundry_4000x3000_06_24-rob-v3-600x450.jpg");
background-repeat: repeat-y;
background-position: center top;
background-size: cover; /* adjust as needed */
z-index: 10; /* in front of normal content */
pointer-events: none; /* so clicks go through to page */
}