body{
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(44, 36, 36);
}
li{
    list-style: none;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    background-color: aquamarine;
    font-size: 29px;
    padding: 12px;
}
ul{
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-bottom: 34px;
    padding: 12px;
    /* width: 34px; */
}
.delete{
    width: 200px;
    margin-left: 35px;
    text-align: center;
    align-items: center;
    
}
div{
    width: 700px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: gray;
    margin: auto;
    border: 25px ridge black;
}
input{
    width: auto;
    padding: 23px;
    font-size: 20px;
    font-family: cursive;
    text-align: center;
}

.addTask,.delete{
    padding: 5px;
    border: 5px ridge rgb(35, 27, 27);
    background-color: black;
    color: white;
    font-size: 19px;
}
.addTask:hover, .delete:hover{
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    color: rgb(6, 0, 0);
    background-color: rgb(114, 54, 54);
}