body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #0b0b0b;
    color: white;
}

.counter-container {
    text-align: center;
    background-color: #232121;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(246, 241, 241, 0.2);
}

h1 {
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

button {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: scale(1.1);
}

#increase {
    background-color: #4CAF50;
    color: white;
}

#decrease {
    background-color: #f44336;
    color: white;
}

#reset {
    background-color: #008CBA;
    color: white;
}
