body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: black;
    color: white;
}

button {
    display: block;
    border: solid 2px #7a3380;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #56165b;
    transition: all 0.2s ease-out; 
    color: white;
    box-shadow: 0 0 10px rgba(122, 51, 128, 0.6), 0 0 20px rgba(122, 51, 128, 0.3);
    margin: 10px auto;
}

button:hover {
    background-color: #7a3380;
    color: rgb(189, 189, 189);
    font-size: 18px;
}