Hey tarmota,
not sure if this is what you are looking for but since I just dealt with a similar issue, this is what I did to get a white transparent background. I put this code into my Custom CSS file:
.page-container {
background-color:rgb(255,255,255);
background-color:rgba(255,255,255,0.3);
}
The rgba gives you transparent colours. You can adjust the degree by changing the last number in the brackets from 0.1 to 1.
Hope this helps!