*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins' , sans-serif;
}
.container{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff7c80, #fad0c4);
    padding: 10px;
}
.todo-list{
color: bisque;
margin: 100px auto 20px;
padding: 40px 30px 70px;
width:500px;
height: auto;
background-color:#f67579;
border-radius: 13px;
text-align: center;
}
.row{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    border-radius: 30px;
    padding-left: 20px;
    background: #edeef0;
}
.row input{
    flex: 1;
  background: transparent;   
    border: none;
    outline: none;
    font-weight: 10px;
    color:black;
}
.row button{
padding: 16px 20px;
border-radius: 40px;
border: none;
outline: none;
font-size: 14px;
cursor: pointer;
background: #ff5945;
color: #fff;
}
ul li{
    list-style: none;
    font-size: 16px;
    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(image/uncheked.png);
    background-position: center;
    background-size: cover;
    top: 12px;
    left: 8px;
}
ul li.checked{
    color: #555;
    text-decoration: line-through;
}
ul li.checked::before{
    background-image: url(image/checked.png);
}
ul li span{
    position: absolute;
    right: 0;
    top: 5px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #555;
    line-height: 40px;
    text-align: center;
}
ul li span:hover{
    background: #edeef0;
    border-radius: 50%;
}
.count{
    display: flex;
    color: #fff;
}