body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #061a40;
}

h1 {
    color: #faf8f8;
  justify-content: center;
  text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
}

.objetivo {
    background-color: #f0f0f0;
    text-align: center;
    padding: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #333;
}
  
.area-entrada {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

#inputTarefa {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.btnListaTarefas {
    padding: 10px 20px;
    background-color:#8E7C93 ;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btnListaTarefas:hover {
    color: white;
    background-color:#42032a 
    
    
}

#listaTarefas {
    list-style: none;
    padding: 0;
}

.item-tarefa {
    background-color:#B9D6F2 ;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
      
.divLixeira {
    display: flex;
    gap: 5px;
}
   


.divTarefas{
    background-color: #b5bd89;
    border: 1px solid #a1ac63;
    border-radius: 15px;
    padding: 15px 15px;
}
.divBtn{
    display: flex;
    justify-content: space-evenly;
}

.btnLixeira{
    width: 20px;
    cursor: pointer;
}    
