LioniEspumoni
Removing it seems like a lot of work. What I tried instead was to hide to behind main front container after replacing it with an image. Add this to your CustomCSS. Here it is:
For Changing Background of Main Front Container:
/* Replace the image url with what background you wish to have */
.main-container-desktop::before {
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
background: url(https://i.ibb.co/fGtjZSG/Main.png);
}
To Hide Middle Container:
.container-fluid {
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
background: #FFFFFF;
z-index: -1;
}
To hide Footer Container:
.desktop-footer {
content: "";
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
background: #FFFFFF;
z-index: -1;
}