.bg-green {
  background-color: #00b894;
}

.text-green {
  color: #00b894;
}

.btn-success {
  background-color: #00b894;
  border-color: #00b894;
}

.btn-success:hover {
  background-color: #00cca3;
  border-color: #00cca3;
}

.nav-item a {
  color: #212529;
  font-weight: 700;
}

.nav-item a:hover {
  color: #00b894;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation: bounce 1s infinite;
}
