/* .container{
    text-align: center;
} */

body {
    background: #04A1BF;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    padding-top: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 4rem;
}

#enter{
    border:none;
    padding: 7px 18px;
    border-radius: 7px;
    color: #04A1BF;
    background-color: #025F70;
    transition: all 0.75 ease;
    -webkit-transition: all 0.75s ease;
    -moz-transition: all 0.75s ease;
    -ms-transition : all 0.75s ease;
    -o-transition: all 0.75 ease;
    font-weight: normal;
}

#enter:hover {
    background-color: #000000;
    color: #00891E;
}

ul{
    text-align: left;
    margin-top: 20px;
}

li {
    list-style: none;
    padding: 10px 20px;
    color: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    border: 2px solid #025f70;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #feb9cd;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition : all 0.5s ease;
    -o-transition: all 0.5 ease;
}

li:hover {
    background: #76cfe0;
}

li > button {
    font-weight: normal;
    background: none;
    border: none;
    float: right;
    color: #025F70;
    font-weight: 800;
}

input{
    border-width: 5px;
    min-width: 65%;
    padding: 5px;
    border: none;
}

.done{
    background: #51DF70 !important;
    color: #00891E
}

/* .delete{
    border:none;
    padding: 7px 18px;
    border-radius: 7px;
    color: #04A1BF;
    background-color: #025F70;
    transition: all 0.75 ease;
    -webkit-transition: all 0.75s ease;
    -moz-transition: all 0.75s ease;
    -ms-transition : all 0.75s ease;
    -o-transition: all 0.75 ease;
    font-weight: normal;
} */