*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background:#efdb97;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #160601;
    padding: 25px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    color: white;
}

h1 {
    margin-bottom: 5px;
}

.quote {
    font-size: 14px;
    color: #ebcaca;
    margin-bottom: 15px;
}

.input-section {
    display: flex;
    gap: 10px;
    color : rgb(231, 199, 199);
}

input {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #922121;
}

button {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background: #9e7553;
    color: white;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

ul {
    list-style: none;
    margin-top: 15px;
}

li {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: #513e04;
    margin-bottom: 8px;
    border-radius: 6px;
    cursor: pointer;
}

li.completed {
    text-decoration: line-through;
    opacity: 0.6;
}

.progress-container {
    background: #ddd;
    height: 8px;
    border-radius: 10px;
    margin-top: 15px;
}

#progressBar {
    height: 100%;
    width: 0%;
    background: #bfeb85;
    border-radius: 10px;
}