.btn-custom {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color:white;
    border: none;
    font-size: medium;
    padding: 0.8rem 1rem;
    border-radius: 70px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .btn-custom:hover {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color:black;
  }