/* *****************************************************************
DEMO
***************************************************************** */
.gallery {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.gallery a {
  text-decoration: none;
  margin: auto;
}

.gallery img {
  display: block;
}
