#salvaTarefas {
  background-image: linear-gradient(
    to right,
    rgb(240, 189, 253),
    rgb(255, 170, 198)
  );
  width: auto;
  box-sizing: border-box;
  padding-top: 30px;
  padding-bottom: 30px;
  border: 4px solid #ffa4a4;
  border-radius: 10px;
}
/*task form project*/
#taskProjeto {
  margin: 10px;
  text-align: left;
  font-size: 20px;
  position: absolute;
}
#add-task-form {
  margin-right: 0px;
}
#add-task-form input {
  box-sizing: border-box;
  border: none;
  background: #fff;
  color: #34073d;
  margin: 0 0 10px 10px;
  font-size: 18px;
  height: 50px;
  line-height: 50px;
  position: relative;
  border-bottom: 3px solid #34073d;
  background-color: #fff;
  color: #34073d;
  margin-left: 15px;
  transition: 0.5s;
  font-weight: bold;
}
#add-btn {
  background: #fff;
  border: none;
  border-bottom: 3px solid #34073d;
  background-color: #fff;
  color: #34073d;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  left: 0px;
  height: 50px;
  margin-bottom: 10px;
  padding: 5px;
  outline: none;
}
#add-task-form input::placeholder {
  color: #34073d;
}
#add-task-form input:focus {
  outline: none;
}
#add-btn:hover {
  background-color: #34073d;
  color: #fff;
  transition: 0.5s;
}

/* task container*/
#task-list {
  list-style: none;
  text-align: center;
  line-height: 50px;
  position: relative;
  border-bottom: 3px solid #34073d;
  background-color: #fff;
  color: #34073d;
  transition: 0.5s;
  font-weight: bold;
}

#task-list li.done {
  background-color: #34073d;
  color: #fff;
  text-decoration: line-through;
  padding: 10px;
}
#task-list span {
  text-align: start;
}
.done-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
}
.done-btn:hover {
  color: #fff;
  height: 100%;
  background-color: #09e01b;
}
.remove-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
}
.remove-btn:hover {
  color: #fff;
  height: 100%;
  background-color: red;
}
.reverse-btn {
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
}
.reverse-btn:hover {
  background-color: #ff8a1c;
}
.hide {
  display: none;
}
.done {
  background-color: #34073d !important;
  text-decoration: line-through !important;
  color: #fff !important;
}
input {
  word-wrap: word-wrap;
}
