.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-container a {
  margin: 20px 0 20px 0;
  background-color: var(--primary-color) !important;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  animation: pulse 3s ease infinite;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-container a:hover {
  background-color: var(--secondary-color) !important;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
