/*
1 colore bottone
2 bordo/hover
3 testo
*/
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
.imgHoverZoom {
  overflow: hidden;
}
.imgHoverZoom img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.imgHoverZoom img:hover {
  transform: scale(1.08);
}

/*# sourceMappingURL=imageUtility.css.map */
