.gradient-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(45deg, #666, #000);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gradient-button:hover {
    background: linear-gradient(45deg, #000, #666);
    transform: scale(1.05);
}


 @media only screen and (max-width: 480px) {
    .custom-gradient {
      font-size: 40px ;
      line-height: 50px ;
      letter-spacing: 1px ;
    }
  }

  /* Tablet (Keeping it the same as desktop) */
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .custom-gradient {
      font-size: 70px;
      line-height: 85px ;
      letter-spacing: 1.5px ;
    }
  }