@charset "utf-8";
/* CSS Document */

#gallery {
  background-color: #444;
  padding: 35px;
  width: 100%;
  text-align:center
}
#gallery ul { list-style: none; }
#gallery ul li { display: inline; }
#gallery img {
  border: 5px solid #3e3e3e;
  border-width: 5px 5px 20px;
}
#gallery img:hover{
  border: 5px solid #fff;
  border-width: 5px 5px 20px;
  color: #fff;
  transform: scale(1.1);
}
#gallery img:hover { color: #fff; }
