*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}
.container{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #91b1af, #8f2714);
    padding: 10px;
}
.todo-app{
    width: 100%;
    max-width: 540px;
    background: #ffffff;
    margin: 100px auto 20px;
    padding: 40px 30px 70px;
    border-radius: 10px;
}
.todo-app h2{
    color: #91b1af;
    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: #ffb39c;
    border-radius: 30px;
    padding-left: 20px;
    margin-bottom: 25px;
}
input{
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 10px;
    color: rgb(133, 3, 3);
}
button{
    border: none;
    outline: none;
    padding: 16px 40px;
    background: #91b1af;
    border-radius: 40px;
    color: #fff9f9;
    font-size: 16px;
    cursor: pointer;
}
ul li{
    list-style: none;
    font-size: 20px;
    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(https://img.icons8.com/?size=100&id=18722&format=png&color=000000);
    background-size: cover;
    background-position: center;
    top: 12px;
    left: 8px;
}
ul li.check{
    color: #91b1af;
    text-decoration: line-through;
}
ul li.check::before{
    background-image: url(https://img.icons8.com/?size=100&id=7yVMtODDHoSU&format=png&color=000000);
}
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: #91b1af;
    border-radius: 40px;
}