add css to only body text

On your CSS rule for the .single img, you are currently setting only the maximum width, and the padding you set applies to the image itself within the body’s box.

Try setting the image to full width and pulling the sides out with negative margin:

.single img {
     width:100%;
     margin: 0 -100px;
     }