body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2d3436;
    margin: 0;
  }
  
  button {
    border: none;
    outline: none;
    background-color: #6c5ce7;
    padding: 10px 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    border-radius: 5px;
    transition: all ease 0.2s;
    box-shadow: 0px 5px 0px 0px #a29bfe;
  }
  
  button:hover {
    transform: scale(1.05);
    background-image: linear-gradient(to right,
                                       #6c5ce7 10%,
                                       #9977fa 50%, 
                                       #c239b3 130%); 
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.3);
}

  button:active {
    transform: translateY(3px); 
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  
  button a {
    color: #fff;
    text-decoration: none;
  }
  