*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Poppins", serif;
}

.container{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
    padding: 10px;

}
.to-do-list{
    width: 100%;
    max-width: 450px;
    background-color: white;
    margin: 100px auto 20px;
    padding: 40px 30px 70px;
    border-radius: 10px;
}
.to-do-list h2{
    color: black;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    
}
.to-do-list h2 img{
    width: 30px;
    margin-left: 10px;
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(215, 215, 215);
    border-radius: 30px;
    padding-left: 20px;
    margin-bottom: 25px;
}

input{
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 9px;
}
button{
    border: none;
    outline: none;
    padding: 8px 30px;
    background-color:rgb(208, 165, 250);
    color: black;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
}
/* #list-container{
     
} */
ul li{
    list-style: none;
    font-size: 17px;
    padding: 12px 8px 12px 50px ;
    user-select: none;
    cursor: pointer;
    position: relative;
}
ul li::before{
    content:"" ;
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-image: url(images/uncheck-circle-2.png);
    background-size: cover;
    background-position: center;
    top: 12px;
    left: 8px;
}
ul li.checked{
    color: purple;
    text-decoration: line-through;
}
ul li.checked::before{
    background-image: url(images/checked-circle.png);
}
ul li span{
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    text-align: center;
    color:black;
    border-radius: 50%;
}

ul li span:hover{
    background-color: #e0c3fc;
}