.flex-center {
    background: transparent !important;
}

.max-h-60 {
    max-height: 10rem;
    float: left;
    animation-name: float-animation;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    width: auto;
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}