body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
    text-align: center;
}

.licznik-kontener {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 800px;
}

h1 {
    color: #4CAF50; /* Zieleń */
    margin-bottom: 30px;
    font-size: 2.2em;
}

#licznik {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Pozwala na zawijanie elementów na mniejszych ekranach */
}

.jednostka {
    background-color: #e0f2e0; /* Jasna zieleń */
    color: #2e7d32; /* Ciemniejsza zieleń */
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.8em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.jednostka span:last-child {
    font-size: 0.5em;
    font-weight: normal;
    margin-top: 5px;
    color: #4CAF50;
}

p {
    font-size: 1.1em;
    color: #555;
    margin-top: 20px;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }

    #licznik {
        gap: 15px;
    }

    .jednostka {
        font-size: 1.5em;
        padding: 15px 20px;
        min-width: 80px;
    }
}