In your style.css file the #wrap has a background #fff (which is white) and thats the reason you don’t see the background image, or color that you added. All that you would need to do is remove the background from #wrap and it should work.
#wrap {
background-color: #fff;
margin: 0 auto;
padding: 0;
}