

#shop-troyco-logo:hover{
    cursor: pointer;
}


.inflated-stage-1{
    transform: scale(0.95) !important;
}

.inflated-stage-2{
    transform: scale(0.92) !important;
}

.bumping-image{
  animation-name: bump;
  animation-duration: 0.5s; /* How fast the bump happens (half a second) */
  animation-timing-function: ease-in-out; /* Smooth acceleration/deceleration */
  animation-iteration-count: infinite; /* Make it loop forever */
}


@keyframes bump {
  0% {
    transform: scale(1); /* Start at normal size */
  }
  50% {
    transform: scale(1.03); /* Grow slightly (the 'bump') */
  }
  100% {
    transform: scale(1); /* Return to normal size */
  }
}






