*{
    margin:0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}
.container{
    /* border: 2px black solid; */
    min-height:100vh;
    max-height:1000vh;
    min-width:50vh; 
    max-width:1000vh;
    background: linear-gradient(135deg,#153677,#4e085f);
    padding: 10px;
}
.todo-app{
    width:100%;
    max-width: 560px;
    /* height: 500px; */
    background: #fff;
    margin: 100px auto 20px;
    padding: 40px 30px 30px;
    border-radius: 10px;
    /* position: relative;
    align-items: center; */
        /* border: 2px black solid; */
}
.todo-app h2{
    color: #002765;
    display: flex;
    align-items: center; 
    margin-bottom: 20px;
}
.todo-app h2 img{
    width:30px;
    margin-left: 10px;
}
.row{
    display: flex;  
    align-items: center; 
    justify-content: space-between;
    background: #edeef0;
    border-radius: 30px;
    padding-left: 20px;
    margin-bottom: 25px;
    position: relative;   
}
input{
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 15px;
    font-weight: 14px;
    word-wrap:break-word;
}
#add-btn{
    height:100%;
    width: 24%;
    /* padding: 2% 2% 2% 2%; */
    border: none;
    background-color: orangered;
    color:#fff;
    font-size: 16px;
    cursor:pointer;
    border-radius:24px;
    position:absolute;
    right: 0px;
    /* height: min-content; */
    /* height: auto; */
    /* width:min-content; */    
}
#clr{
    display:none;
    padding:2cqmin;
    border: none;
    height: 48px; 
    width: 50%;
    background-color: orangered;
    color:#fff;
    font-size: 16px;
    cursor:pointer;
    border-radius: 24px;
    /* position: absolute; */
    margin: auto;
    /* margin-left:33.33%; */
    /* margin-left: 40%; */
    /* align-self: center; */
}


ul li{
    /* border: 2px solid black; */
    list-style: none;
    font-size: 17px;
    padding: 10px 38px 12px 50px;
    user-select: none;
    cursor: pointer;
    position:relative;
   word-wrap:break-word;
   
}
ul li::before{
    content:'';
    position:absolute;
    height: 28px;
    width:28px;
    border-radius:50%;
    background-image: url(ToDo-images/unchecked.png);
    background-size: cover;
    background-position:center ;
    top: 6px;
    left: 8px;
}
ul li.checked{
    text-decoration:line-through;
    color: #555;
}
ul li.checked::before{
    background-image: url(ToDo-images/checked.png);
}
ul li span{
    position: absolute;
    right:inherit;
    right:0px;
    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%;
}