*{
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}
body{
      background-color: #FAD0C9;

}
.content{
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.too-content {
     border-radius: 5px;
    background-color: #6E6E6D;
    border: 5px;
    padding:  20px 20px 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.too-content h3 {
    margin-top: 5px ;
    color: #FAD0C9;
}

.input input {
     width: 460px;
     height: 100%;
     padding: 0 5px;
     border-radius: 5px;
     background-color: #FAD0C9;
     border: none;
     outline: none;
    }
.input button
{    width: 31.5px;
     height: 31.5px;
     background-color: #FAD0C9;
     border: none;
     border-radius: 5px;
}   
.input button:hover{
    transform: scale(1.05);
}  
.input button i {
         color: #6E6E6D;

}
.too-content h4 {
    font-size: 19px;
    display: flex;
    justify-content: center;
    align-items: center;  
    color: #FAD0C9;
    margin-top: 30px;
 
}
.tasks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tasks li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FAD0C9;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
}
.tasks span {
    color: #6E6E6D;
}
.tasks li .actions {
    display: flex;
    gap: 8px;
}
.tasks li button {
    border: none;
    background: transparent;
    font-size: 18px;
    color: #6E6E6D;
}
.tasks li button:hover {
    transform: scale(1.2);
}
.tasks li button.delete:hover {
    color: red;
}
.tasks li button.edit:hover {
    color: green;
}
.tasks li .check {
    display: flex;
    gap: 8px;
}
.tasks span.done {
    text-decoration: line-through;
    opacity: 0.7;
}