@keyframes blob {
  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.5);
  }
  66% {
    transform: translate(-20px, 40px) scale(0.9);
  }
}

.animate-blob {
  animation: blob 8s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

.blob-color {
  background-color: #1e73be;
}

.bg-gold {
  background-color: #3c93e0;
}

.text-gold {
  color: #2081dc;
}

.bg-gold-alt {
  background-color: #3c93e0;
}

.bg-gold-blur {
  background-color: #b07944;
}

.navbar-link {
  background-image: linear-gradient(#3c93e0, #3c93e0);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all 0.3s ease-out;
  padding-bottom: 8px;
  padding-top: 10px;
}

.navbar-link-mobile {
  background-image: linear-gradient(#3c93e0, #3c93e0);
  background-size: 0 2px, auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition: all 0.3s ease-out;
  padding-bottom: 15px;
  padding-top: 10px;
}

.navbar-link:hover {
  background-size: 70% 2px, auto;
}

.navbar-link.active {
  /* background-size: 5% 2px, auto; */
}

.navbar-link-mobile:hover {
  background-size: 70% 2px, auto;
}

.navbar-link-mobile.active {
  background-size: 70% 2px, auto;
}

.z-300 {
  z-index: 300;
}

.bg-all {
  background-color: #0a0200;
}
