@charset "UTF-8";

.screenshot {
	margin: 10px;
	max-width: 100%;
	max-height: 300px;
	cursor: pointer;
	box-shadow: 3px 3px 3px darkgray;
}

img.screenshot {
	-webkit-transition: all 300ms ease-in-out;
	   -moz-transition: all 300ms ease-in-out;
	    -ms-transition: all 300ms ease-in-out;
	     -o-transition: all 300ms ease-in-out;
	        transition: all 300ms ease-in-out;
}
.screenshot:hover {
	box-shadow: 5px 5px 6px gray;
}
.screenshot.zoom {
	max-width: unset;
	max-height: unset;
}

