body{
    background-color: lightslategray;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
}
.content{
    border: .4rem solid #90a19a;
    margin: 9rem auto ;
    padding: 1rem;
    background-color: cadetblue;
    width: 35rem;
    border-radius: 2em;
    color: honeydew;
}
ul{
    list-style-type: none;
}
.todoList{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.todoList>*{
    border-radius: 0.4rem;
    margin: 1rem ;
    font-size: larger;
}
.todoList>span{
    color: rgb(229, 236, 9);
    font-weight: bolder;
}
.centerText{
    text-align: center;
}
.taskSection{
    display: flex;
}
.taskSection >*{
    padding: .4rem;
    margin: .3rem;
}
.formStyle{
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* button{
    border: 0.2em solid grey;
    border-radius: 2rem;
    color: burlywood;
    width: 5em;
} */
input[type="checkbox"]{
    transform: scale(1.8);
}
input[type="submit"]{
    border : .1rem solid rgb(27, 86, 2);
    border-radius: 1rem;
    padding: .6rem;
    background-color: unset;
    width: 9rem;
    color: mintcream;
    font-size: 1.4rem;
}
.taskText{
    border-radius: 1rem;
}
input[type="text"],[type="date"]{
    border-radius: 1rem;
    padding: 0.6em;
}
input[type="text"],[type="date"]::placeholder{
    font-size: 1rem;
    color: brown;
}
input{
    font-size: 1rem;
}
.spanFlex{
    display: flex;
    flex-direction: column;
}
#done{
    display: none;
    border: .4rem solid rgb(88 116 88);
    border-radius: 1rem; 
}
#done >li{
    padding:.4rem;
    font-weight: bolder;
    margin: .3rem;
}
img{
    width: 2em;
    border-radius: .3rem;
}