.container {
  background: linear-gradient(45deg, #3a65f2, #6a5acd, #8a2be2, #023cfc) 0 0 / 400% 400%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  padding: 10vh;
  animation: 6s infinite gradientFlow;
  display: flex;
}

.icon-container {
  width: 180px;
  margin-bottom: 20px;
  transition: all .3s;
  position: relative;
}

.logo-image {
  width: 100%;
  transition: opacity .3s;
}

.title {
  color: #fff;
  margin-bottom: 20px;
  font-size: 3rem;
  animation: 1s ease-out fadeInUp;
}

@keyframes gradientFlow {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

