@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap');
*{
    margin:0;
    padding:0;
    font-family: 'Inconsolata', monospace;
    box-sizing: border-box;
}
.container{
    width:100%;
    min-height: 100vh;
    background:linear-gradient(135deg,#8ACDD7,#F9F9E0);
}
 .todo-app{
    width:100%;
    max-width:540px;
    background:#fff;
    margin:0px auto 20px;
    padding:40px 30px 70px;
    border-radius:10px;
} 
.todo-app h2{
    color:#5FBDFF;
    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;
}
input{
    flex: 1;
    border:none;
    outline:none;
    background: transparent;
    padding: 10px;

}
button{
    border:none;
    outline:none;
    padding:16px 50px;
    background:#FF90BC;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    border-radius: 40px;
}
ul li{
    list-style:none;
    font-size:17px;
    padding:12px 8px 12px 15px;
    cursor:pointer;
    user-select: none;
    position:relative;
}
ul li::before{
    content:'';
    position:absolute;
    height:28px;
    width:28px;
    border-radius:50%;
    background-size: cover;
    background-position: center;
    top:10px;
    left:-18px;

}
ul li span{
    position:absolute;
    right:0px;
    top:5px;
    width:40px;
    height:40px;
    font-size:22px;
    color:#555;
    text-align:center;
    border-radius: 50%;
}
ul li span:hover{
    background:#edeef0;
}
@media only screen and (max-width: 600px) {

    .row{
        display:flex;
        align-items:center;
        justify-content:space-between;
        background: #edeef0;
        border-radius:8px;
        padding-left:70px;
        margin-bottom:25px;
    }
    .todo-app{
        
        max-width:475px;
        background:#fff;
        margin:0px auto 20px;
        padding:40px 90px 40px 0;
        border-radius:10px;
    }
    /* input{
        flex: 1;
        border:none;
        outline:none;
        background: transparent;
        position: relative;
        right:30px;
        
    
    } */
    button{
        border:none;
        outline:none;
        padding:10px 16px;
        background:#FF90BC;
        color:#fff;
        font-size:16px;
        cursor:pointer;
        border-radius: 10px;
        
    }
    .todo-app h2{
        color:#5FBDFF;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        margin-left: 60px;
    
    }
    .todo-app h2 img{
        width:30px;
        margin-left: 10px;
    }
  }
  