/* -------------------- GALLERIA FLEX MASONRY -------------------- */
body {
  padding-top: 70px;
  background-color: #f8f9fa;
}

#galleria-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem;
  max-width: 100;
}

.masonry-flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.masonry-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.masonry-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .masonry-flex {
    flex-direction: column;
    align-items: center;
    gap:0rem;
  }

  .masonry-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap:0rem;
  }

  .masonry-item {
    max-width: 100%;
  }

  #galleria-wrapper {
    padding: 0rem;
  }
}

.galleria a:hover {
    color: #4d4949;
}

@media (max-width: 768px) {
  .masonry-item {
    width: 100%;
  }
  .footino {
    font-size: 0.8rem !important;  /* Riduce la dimensione del font */
    padding: 1rem !important;       /* Riduce il padding */
  }
}

.footino{
    font-size: 0.4rem !important;
    text-align: center;
    width:100%;
}
#back{
    background-color: #e3e3e1;
    border-top: 3px solid  rgba(192, 192, 192, 0.637);
    text-align:center;
    width:100%;
}