.container{
    margin: 0 auto;
    
    
}
body{
    
    background-color: #d4af37; 
}

h1 {
  color: #00ff00;
    
}

.container .gallery a img {
  float: center;
  width: 10%;
  height: 10%;
  border: 1px solid #eef2c0;
  
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}

.container .gallery a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}

.clear {
  clear: both;
  float: none;
  width: 100%;
}