body{
    background-color: antiquewhite;
    align-items: center;
    justify-content: center;
}
.todos{
    text-align: center;
    background-color: aliceblue;
    width: 450px;
    border-radius: 10px;
    padding: 30px;
    margin-left: 700px;
}
.addInp{
    padding: 10px;
    width: 200px;
    border-radius: 10px;
    border: none;
}
.addBtn{
    background-color: darkblue;
    color: white;
    padding: 10px;
    border-radius: 10px;
    border: none;
}
li{
    background-color: white;
    list-style: none;
    border: 1px solid black;
    padding: 10px;
    margin-bottom: 10px;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.delete{
    font-size: 25px;
    cursor: pointer;
}
.delete:hover{
    color: tomato;
}
.check-icon{
    font-size: 25px;
}
.completed .taskText{
    text-decoration: line-through;
    color: gray;
}

.completed .fa-square-check{
    color: green;
}
span{
    font-size: 25px;
}
.edit{
    font-size: 27px;
}
.edit:hover{
    color: darkorange;
}
.modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.518);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-content{
    background-color: white;
    width: 300px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}
.modal-actions{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.editInp{
    padding: 10px;
    width: 200px;
    border-radius: 10px;
    border: 2px solid #333;
}
.saveEditBtn{
    background-color: tomato;
    padding: 10px;
    border: none;
    border-radius: 10px;
    width: 130px;
}
.closeEditBtn{
    padding: 10px;
    border: 1px solid gray;
    border-radius: 10px;
    width: 130px;
}
.hidden{
    display: none;
}
.text-time{
    display: flex;
    flex-direction: column;
}
small{
    color: gray;
}