body {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: white;
    font-size: 4rem;
    text-align: center;
}

button {
    font-weight: 600;
    background-color: #8a2be2; 
    color: #fff;
    padding: 10px 18px; 
    border: none;
    border-radius: 5px; 
    cursor: pointer; 
    transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover{
    background-color: #6a1b9a; 
    box-shadow: 0 6px 6px rgba(255, 255, 255, 0.3);
}