I am building a website for a friend, and part of his specification is that images should include links to view the image in a higher resolution. I enclosed the home image i
It's because you've set the image to display as a block element (I assume you did this for centering). If you remove the display: block line and add a section for the #home div as so:
#home {
text-align: center;
}
It should work for you and the margins will not be "clickable"