*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
body{
     background: linear-gradient(45deg,#0a0a0a,#3a4452);
}
 
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 120px auto 0px auto;
    max-width: 500px;
}
.stats-container{

    padding: 40px;
    border-radius: 20px;
    border: 2px solid grey;
    display: flex;
    gap: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
h1{
    color: bisque;

}
p{
    color: bisque;
    font-size: larger;
}
.details{
    width: 100%;
}
#progress-bar{
    width: 100%;
    height: 10px;
    background-color: antiquewhite;
    border-radius: 10px;
    margin-top: 30px;
   
}
#progress{
    width: 0%;
    height: 10px;
    background-color: brown;
    border-radius: 10px;
    transition: all 0.3s ease;
    
}
#numbers{
    height: 100px;
    width: 100px;
    color: #3a4452;
    background-color: aliceblue;
    display: flex;
    border:4px solid rgb(129, 110, 110);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 700;
}
form{
    margin-top: 50px;
    width: 100%;
    display: flex;
    gap: 5px;
}
input{
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid grey;
    outline: none;
}
button{
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 80%;
    font-size: 50px;
    color: rgb(207, 125, 25);
    font-weight: 400;
    outline: none;
}
#task-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
    list-style: none;

}
.taskItem{
    width: 100%;
    display: flex;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}
.task{
    display: flex;
    align-items: center;
    gap: 10px;
}
.task input{
    width: 20px;
    height: 20px;
}
.taskItem img{
    width: 24px;
    height: 24px;
    margin: 0 10px;
    cursor: pointer;
}