body{
    font-family: 'Courier New', Courier, monospace;
    box-sizing: border-box;
    background-color: rgb(175, 80, 192);
}
.todo-app{
    width: 100%;
    max-width: 400px;
    background-color: aliceblue;
    margin: 100px auto 20px;
    padding: 10px 20px 50px;
    border-radius: 30px;
}

.todo-app h2{
    font-size: 160%;
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(236, 236, 236, 0.933);
    border-radius: 40px;
}

input{
    flex: 1;
    outline: none;
    border: none;
    background-color: transparent;
    padding: 7px;
    
}

button{
    outline: none;
    border: none;
    padding: 12px 13px;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    background-color: rgb(44, 32, 173);
}

ul li{
    color: black;
    list-style: none;
    font-size: 17px;
    padding: 12px 8px 12px 5px;
    cursor: pointer;
    user-select: none;
    position: relative;
}


ul li span{
    position: absolute;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #404040;
    text-align: center;
    line-height: 40px;
}
ul li span:hover{
    background-color: #b1b0b0;
}



