I'm experiencing an issue where there is a gap in the IOS status bar on my webpage. I've been struggling to find a solution using CSS.
You can see how it looks on an iPhone in this [screenshot](https://i.sstatic.net/y3Lwp.jpg) when the page loads.
The background image and color do not fill or match the space of the status bar.
Below is the code snippet I have for setting the background image:
body{
font-family: 'Inconsolata', monospace;
background: url("./Components/Images/back.png");
background-repeat: no-repeat;
background-size: cover;
position: relative;
}