@charset "UTF-8";
.gallery {
  margin: 10px 40px;
}

.gallery img {
  width: 200px;
  height: 150px;
  transition: 1s;
  padding: 5px;
}

.gallery img:hover {
  filter: drop-shadow(4px 4px 6px gray);
  transform: scale(1.1);
}
