body {
    background-color: black;
    color: white;
}

.container {
    text-align: center;
    margin-top: 50px;
}

#clickButton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff; /* Default button color */
    color: white; /* Default button text color */
    border: none;
    cursor: pointer;
}

#clickButton:hover {
    background-color: #0056b3;
}

#clickCount {
    color: white;
}
