.main-title {
    margin-left: 40px;
    animation: fadeGlow 8s ease-in-out infinite;
}

@keyframes fadeGlow {
  0% {
    opacity: 0.3;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.6),
      0 0 16px rgba(255, 255, 255, 0.4),
      0 0 24px rgba(255, 255, 255, 0.2);
  }

  100% {
    opacity: 0.3;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

.bouncyTxt {
  display: inline-block;
  animation: bouncyTxt 1.8s ease-in-out infinite;
  font-weight: 300;
  font-family: Haettenschweiler;
  font-size: 2em;
}

@keyframes bouncyTxt {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-22px); }
  40%  { transform: translateY(0); }
  55%  { transform: translateY(-10px); }
  70%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}