body{
    margin: 0;
    padding: 0;
    background-color: rgb(234, 174, 236);

}
#list-box{
    background-color: white;
    border-radius: 20px;
    height: 500px;
    width: 500px;
    margin-top: 70px;
    margin-right: auto;
    margin-left: auto;
}
#list-box h1{
    font-family: cursive;
    text-align: center;
    padding-top: 20px;
}
#box{
    padding-left: 40px;
}
#list-box input{
    border: none;
    font-family: cursive;
    outline: none;
    border: 1px solid black;
    border-radius: 15px;
    height: 30px;
    width: 300px;
    padding-left: 10px;
}
#list-box input:hover{
outline: 1px solid black;
}
#list-box input:active{
outline: 1px solid black;
}
#add>button{
    height: 30px;
    font-family: cursive;
    border: 1px solid black;
    transition: .3s all ease;
    border-radius: 15px;
    height: 34px;
    width: 100px;
}
#list-box button:hover{
    background-color: rgba(234, 174, 236, 0.753);
    border: 2px solid rgb(231, 125, 235);
}
#ul{
    list-style-type: none;
    /* border: 2px solid red; */
    padding: 0;
    margin-right: 42px;
}
.btn-box{
    display: flex;
    justify-content: space-between;
    /* border: 2px solid blue; */
    align-items: center;
    width: 100px;
    font-size: 22px;

}
.btn-box i{
    /* padding: 10px; */
    font-size: 16px;
    /* border: 2px solid red; */
}
.btns button:hover{
    background-color: rgba(233, 183, 235, 0.753);
    /* padding: 10px; */
    border-radius: 60px;
}
.btns button{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: .3s all ease;
    border: none;

}
#ul li{
    display: flex;
    /* border: 2px solid red; */
    justify-content: space-between;
    font-family: cursive;
}
