

/* Стили для изображения */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulsating-image {
  animation: pulse 10s infinite ease-in-out;
}

.image-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-wrapper {
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .pulsating-image {
  transform: scale(1.1);
}

.pulsating-image {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
}