@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.counter-wrap {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, #2c2c2c, #1e1e1e);
    color: #e0e0e0;
    width: 320px;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 10px 10px 20px #121212, -10px -10px 20px #282828;
}

h1 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

#count-el {
    font-size: 72px;
    font-weight: 700;
    margin: 10px 0 25px;
    color: #4CAF50; 
}

button {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 12px 0;
    margin-bottom: 15px;
    width: 200px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

#increment-btn {
    background: linear-gradient(145deg, #5a2a8a, #4e2475);
    box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #3c3c3c;
}

#increment-btn:hover {
    background: linear-gradient(145deg, #6b31a3, #5a2a8a);
    transform: translateY(-2px); 
}

#save-btn {
    background: linear-gradient(145deg, #2e7d32, #26692a);
    box-shadow: 5px 5px 10px #1a1a1a, -5px -5px 10px #3c3c3c;
}

#save-btn:hover {
    background: linear-gradient(145deg, #38963c, #2e7d32);
    transform: translateY(-2px); 
}

button:active {
    transform: translateY(1px);
    box-shadow: inset 5px 5px 10px #1a1a1a, inset -5px -5px 10px #3c3c3c;
}

#save-el {
    font-weight: 300;
    font-size: 14px;
    margin-top: 20px;
    color: #a0a0a0;
}