.gallery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.gallery__small {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media all and (min-width: 550px){
  .gallery__small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media all and (min-width: 1000px){
  .gallery__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media all and (min-width: 1200px){
  .gallery__wrapper,
  .gallery__small {
    gap: 2rem;
  }
}


/**
 * Gallery alt
 */

.gallery-alt .gallery__big {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media all and (min-width: 1000px){
  .gallery-alt .gallery__big  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1200px){
.gallery-alt .gallery__big {
    gap: 2rem;
  }
}
