*{
    padding: 0;
    margin: 0;
}
body{
    height: 100vh;
    box-sizing: border-box;
    font-family: 'Baloo Bhai';
    justify-content: center;
}
h4{
    text-align: center;
    padding: 1.5em 0 0 0;
    font-size: 3em;
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
   margin: 40px;
}
.todo-list{ 
     padding: 1em 0.3em 0.3em 1em;
    width: 30em;
    border:4px solid #88D5B2;
    border-radius: 15px;
    align-items: center;
}
.add{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
    flex-wrap: wrap;
}
.todo-list input{
    width: 20em;
    height: 2.3em;
    border: 2.5px solid black;
    border-top: none;
    border-left: none;
    border-right: none;
   font-family: "Baloo Bhai";
   font-size: 18.5px;
   text-align: center;
   color:#1a744b;
   font-weight: 900;
}
.todo-list .btn{
    width: 80px;
    height:2.3em;
    border:2px solid #88D5B2;
    background: #74d0a7;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 700;
    color:#ffffff;
}
.btn:hover{
     cursor: pointer;
     background-color: #ffffff;
     color: #88D5B2;
}
ul li{
    list-style: none;
    border:2.5px solid #88d5b2;
    margin: 2em 1em 1em 0.5em;
    border-radius: 10px;
}
.div-holder{
    padding: 1em 2em 1em 0em;
    font-size: 1.4em;
    display: flex;
    justify-content: space-between;
}
.todo-info{
    padding: 0.1em 0.1em 0.2em 1em;
    font-family: 'Baloo Bhai';
    font-weight: 600;
    color:#1a744b;
}
.todo-info span{
    color: gray;
    font-size: 0.8em;
    font-family: 'Baloo Bhai';
}
.todo-info1{
     display: flex;
     justify-content: space-between;
     padding: 0em 2em 1em 1em;
     font-size: 1.4em;
     color: gray;
}
.edit-button {
    background: transparent;
    border: none;
}
.edit-button img{
    width: 2em;
}
.edit-button:hover{
    cursor: pointer;
    width: 2.2em;
}
.delete-button{
    background: transparent;
    border: none;
}
.delete-button img{
    width: 2.2em;
}
.delete-button:hover{
    cursor: pointer;
    width: 2.5em;
}

