#brand-intro-welcome img {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scaling-image infinite 60s;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
}

@keyframes scaling-image {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

.effect-fade-in {
  opacity: 0;
}
