#todo{
    height:100vh;
    background:linear-gradient(135deg, orange, red);
    display:flex;
    justify-content: center;
    align-items: center;
}


.container-1{
    display: flex;
    flex-direction: column;
    align-items: left;
    width: 60vw ;
    min-height: 30vh;
    background: white;
    border-radius: 20px;
    position: relative;
}
.container-1 h1{
    display: flex;
    align-items: center;
}
.container-1 img{
    width: 60px;
}
.container-1-items{
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
}
.container-2{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    border-radius: 15px;
    background: lightcoral;
    margin-left: 20px;
}
.container-2 input{
    padding: 20px;
    font-size: 20px;
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    color: white;
}

.container-2 button {
    padding: 10px 20px;
    font-size: 22px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: darkred;
    color: white;
}
.container-2 button:hover{
    cursor: pointer;
    background-color: coral;
}

.list ul{
    list-style: none;
    font-size: 20px;
    cursor: pointer;
}
.list li{
    margin-bottom: 10px;
}
.list span{
    position: absolute;
    right:20px;
}
.complete{
    text-decoration: line-through;
}