You set the html to height:100% but your layout is much taller than 100% so the background gets cut off. You also added padding to the 100% so you have 100% + 40px padding which will give you a vertical scroll on pages that don’t need it.
Use min-height:instead and box-sizing to make sure the padding is contained within the 100%.