body {
    background-color: rgb(233, 153, 32);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    color: rgb(80, 54, 30);
    margin-top: 30px 0px;
    font-size: 30px;
}

input {
    width: 300px;
    height: 30px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
    font-size: 16px;
}

ul{
    text-align: left;
    margin-top: 30px;
    margin-bottom: 10px;
   
}

li{
    list-style: none;
    background-color: rgba(197, 132, 34, 0.856);
    margin: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: capitalize;
    font-weight: 600;
    color: rgb(80, 54, 30);
    border: 2px solid  rgb(80, 54, 30);
    
}

li > button {
    background: none;
    border: none;
    float: right;
    color:rgb(80, 54, 30);
    font-weight: 600;
}

li:hover{
    background-color:rgb(233, 153, 32) ;
}

#enter {
    width: 100px;
    height: 36px;
    border-radius: 5px;
    border: none;
    background-color: rgb(80, 54, 30);
    color:  rgb(233, 153, 32);
    font-size: 16px;
    cursor: pointer;
}

#enter:hover {
    background-color: rgb(60, 40, 20);
}

.done{
    background-color: greenyellow;
    text-decoration: line-through;
    color: green;
}

.delete{
    display: none;
}