body{
            background-image: linear-gradient(160deg, #a1b6b2 0%, #a3c9c4 100%);
            height: 100vh;


        }
        h1{
            padding: 20px 20px;
            text-align: center;
            color: white;
            
        }
        .action-container{
            display: flex;
            justify-content: center;
            margin-top: 20px;
            font-size: 10px;
        }
        .list-container{
            height: 300px;
            background-color:rgb(59, 148, 155);
            width: 400px;
            display: block;
            margin: 20px auto;
            padding: 10px;
            border-radius: 5px;
        overflow-y: scroll;
     

        }
        .todo-item{
            background-color: white;
            padding: 10px 20px;
            border-radius: 5px;
            margin: 5px;
            color: black;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
                }
        .input{
            width: 300px;
            padding: 5px 5px;
            font-size: 15px;
        }
        .btn-add{
            background-color: #054464;
            padding: 5px auto;
            color: white;
            font-weight: bold;
            width: 100px;
            font-size: 16px;
            margin-left: 5px;
            padding: 5px;
            cursor: pointer;
            
        }
        .delete-icon{
            height: 20px;
        }