@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: 14px/1 'Open Sans', sans-serif;
  color: #555;
  background: #fff;
}

.gallery {
  width: 1560px;
	height:100%;
  margin: 0 auto;
  padding: 0px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
	
}

.gallery > div {
  position: relative;
  float: left;
  padding: 5px;
	
}

.gallery > div > img {
  display: block;
  width:300px;
	height:300px;
	-webkit-transition: all .3s transform;
   -webkit-transition: all .3s ease-in;
   
transition: .1s transform;
	

  transform: translateZ(0); /* hack */
	
}
.gallery > div:hover {
  
	box-shadow: 0 0 2px 3px black;
	cursor: pointer;
	-webkit-transition: all .3s ease-in;
	
z-index: 1;
}

	
	




.gallery > div:focus > img {
	
 z-index: 2;
	-webkit-animation: scale(3.2);
	/*-ms-transform: scale(3.2);  
   -moz-transform: scale(4.3);*/
  transform: scale(3,2);
	
    -webkit-animation: all .3s transform;
	/*-moz-transition: all .3s transform;
    -ms-transition: all .3s transform;*/
  transition: .3s transform;
	 
   
	
	position:fixed; left: 50%; top: 50%;  margin-top: -150px; margin-left: -150px; z-index: 99 

	

	
 
}


.cf:before, .cf:after {
  display: table;
  content: "";
  line-height: 0;
}

.cf:after {
  clear: both;
}

h1 {
  margin: 40px 0;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
}
