@import url("../style.css");

body {
  display: grid;
  place-content: center;
}

.gallery {
  --s: 200px; /* control the size */
  --g: 8px; /* control the gap */

  display: grid;
  grid: auto-flow var(--s) / repeat(3, var(--s));
  gap: var(--g);
  padding: 0 10px 50px 10px;
}
.gallery > a > img {
  width: 100%;
  /*aspect-ratio: 1;*/
  height: auto;
  cursor: pointer;
  /*filter: grayscale();*/
  z-index: 0;
  transition: 0.25s, z-index 0s 0.25s;
}
.gallery > a > img:hover {
  width: calc(200% + var(--g));
  filter: grayscale(0);
  z-index: 1;
  --_c: 50%;
  transition: 0.4s, z-index 0s;
}

select-thema li {
	font-size: 3rem;
	color: red;
}