.album {
  display: flex;
  flex-wrap: wrap;
  width: 1320px;
  margin: 0 auto;
  padding: 50px 0;
  justify-content: center;
  gap: 15px;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  overflow: hidden;
  transform: skewX(-15deg);
  border: 6px solid #fff;
  border-radius: 20px;
  background-color: #605c5c;
  transform: skewX(-15deg) scale(1);
  background-color: #605c5c;
  transition: transform 0.3s ease-out, background-color 0.3s ease-out;
}
.img-box img {
  transform: skewX(15deg);
  object-fit: cover;
}
.img-box:hover {
  z-index: 1;
  background-color: #7f7211;
  transform: skewX(-15deg) scale(1.4);
}

body {
  background-image: url("../rsc/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}/*# sourceMappingURL=gallery.css.map */