Something is adding a linear gradient background to the body:
body {
font-weight: 400;
font-size: 14px;
line-height: 120%;
color: #222;
background: #d2d3d5;
background: -moz-linear-gradient(-45deg,#d2d3d5 0%,#e4e5e7 44%,#fafafa 80%);
background: -webkit-linear-gradient(-45deg,#d2d3d5 0%,#e4e5e7 44%,#fafafa 80%);
background: linear-gradient(135deg,#d2d3d5 0%,#e4e5e7 44%,#fafafa 80%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d2d3d5',endColorstr='#fafafa',GradientType=1);
padding: 0;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
I can’t quite tell from where as there is a caching plugin activated.
If you didn’t add that, try #1 here to eliminate any plugin conflicts first:
https://docs.generatepress.com/article/debugging-tips/
Let me know :)1