@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");



body {

  font-family: "Quicksand", serif;

}



.noBorder {

  border: none !important;

}


.gallery::-webkit-scrollbar {

  height: 4px;

  background-color: lightgray;

}



@keyframes scroll-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.gallery {
  display: flex;
  animation: scroll-gallery 60s linear infinite; /* Tempo di animazione regolabile */
}

.gallery-wrapper {
  overflow-x: hidden;
}