* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.galleryHolder {
  column-count: 4;
  column-gap: 15px;
  width: 100vw;
  max-width: 1200px;
  padding: 20px;
}

.galleryHolder img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.galleryHolder img:hover {
  transform: scale(1.05);
}

.galleryBottomText {
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}

.fullView {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullView img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.closeBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .galleryHolder {
    column-count: 3;
  }
}

@media screen and (max-width: 768px) {
  .galleryHolder {
    column-count: 2;
  }
}

@media screen and (max-width: 480px) {
  .galleryHolder {
    column-count: 1;
  }
}
