body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212; /* Dark background */
    color: #ffffff; /* Light text color */
}

.container {
    text-align: center;
    padding: 30px;
    background-color: #1e1e1e; /* Slightly lighter container background */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Light shadow for dark theme */
}

h1 {
    color: #bb86fc; /* Example accent color (purple) */
}

#counter-display {
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff; /* Light counter text */
}

.buttons button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 0 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #3700b3; /* Darker button color */
    color: #ffffff; /* Light button text */
}

.buttons button:hover {
    background-color: #6200ee; /* Slightly lighter hover color */
}