html {
	background: #white
}
header {
	background: #a7a7a7;
}
body {
	border:1px solid black; 
	width:1000px;
	margin:0 auto; 
	padding:0.5em;    
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.4em;
}




figure {
    float: left; /* aligning left so as to stack the next image  */
    margin-right: 5px;   /* - putting a space to the right*/ 
	width: 450px;/* setting the width of the figure section*/
}

figure img {
    display: block;/* telling the image it can be in one line*/
	width: 450px; 
	margin-left:-15px;/* moving the image closer to the LH border*/
	border:4px solid black;/* putting border around the pictures*/
}
/* Styling the caption under the image*/
figcaption {
    text-align: center;
    margin-top: 5px;
}