@charset "UTF-8";
/*style image*/
body {
	background-color:#000;
	font-family:Arial, Helvetica, sans-serif;
	color:#FFF;
	text-align:center;
}

.responsive-photo-90
       { 
	   
/*It applies block display to force images onto their own line (row), rather than inline with accompanying text.*/
display: block; 

/*It defines a width of 90% to images with this class.*/
width: 90%; 

 /*It centers them with margin-right and margin-left auto values.*/
margin-right: auto;
margin-left: auto;

 /*stop pixalation on larger monitors, set max width of image*/
max-width:800px; 
     }

