:root{
    --background: #000430;
    --secondaryBackground: #171c48;
    --text: #fff;
    --purple: #828dff;
    --teal: #24feee;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    height: 100vh;
    background-color: var(--background);
    color: var(--text);
}
.center{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center; /* 14:00 INDIA*/
    width: 500px;
}

.stats-container{
    padding: 20px;
    border-radius: 20px;
    border: 2px solid var(--purple);
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}
.details{
    width: 100%;
}
#progressBar{
    width: 100;
    height: 10px;
    background-color: var(--secondaryBackground);
    border-radius: 5px;
    margin-top: 20px;
}
#progress{
    width: 0%;
    height: 10px;
    background-color: var(--teal);
    border-radius: 10px;
    transition: all 0.3s ease;
}
#numbers{
    width: 100px;
    height: 100px;
    background-color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
}
form{
    margin-top: 60px;
    width: 100%;
    display: flex;
}
input{
    flex: 1;
    padding: 16px;
    background-color: var(--background);
    border: 1px solid var(--purple);
    border-radius: 10px;
    outline: none;
    color: var(--text);
}
button{
    padding: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--purple);
    font-weight: bald;
    color: var(--text);
    font-size: 30px;
    outline: none;
}
#task-list{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    list-style: none;
}
.taskItem{
    display: flex;
    background-color: var(--secondaryBackground);
    padding: 10px 15px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.task{
    display: flex;
    align-items: center;
    gap: 10px;
}
.task input{
    width: 20px;
    height: 20px;
}
.completed p{
    text-decoration: line-through;
    color: var(--teal);
}
.taskItem svg{
    width: 24px;
    height: 24px;
    margin: 0 10px;
    cursor: pointer;
}
li{
    width: 100%;
}

@media (max-width: 550px){
    .container{
        width: 370px;
    }
}