/*
* Increment Decrement Counter App
* Author: Aditya Chauhan
* Website: https://cloudxtech.io/
*/

*{
    box-sizing: border-box;
}
body {
    margin: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb, #a6c1ee);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    font-family: Arial, sans-serif;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.timer {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    width: 400px;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    width: 100%;
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 10px;
}

.buttons button {
    margin: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background: #4facfe;
    color: white;
    transition: background 0.3s;
}

.buttons button:hover {
    background: #00f2fe;
}