Why does my Venture Theme website show a black section in landscape mode?

My website link is https://www.naturewoodfloors.com/. After loading the site on mobile if I rotate the mobile to the landscape mood its showing a black section to the right and the scroll bar. This is a responsive issue I think.

@NatureWood

Please add the following code at the bottom of your assets/theme.scss.liquid file.

html {
    background-color: #f7f7f7!important;
}

Thanks!

hii, @NatureWood
Paste this on top of the theme.scss file.

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (mi-moz-device -pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {

html,body{
   width:100%; !important;
  overflow-x:hidden !important;

}

}

Thank You.