/* Basic page styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(to bottom, #8C8C8C, #000000);
}

/* Button styling */
button {
    padding: 10px 20px;
    font-size: 16px;
    background: linear-gradient(to bottom, #8C8C8C, #000000);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
