.tasks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tasks__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #e6dada;
}

.tasks__item--hidden {
  display: none;
}

.tasks__content--done {
  text-decoration: line-through;
}

.tasks__button {
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  padding: 0;
  transition: background 0.6s;
}

.tasks__button--toggleDone {
  background: hsl(120, 61%, 34%);
}

.tasks__button--toggleDone:hover {
  background: hsl(120, 61%, 38%);
}

.tasks__button--toggleDone:active {
  background: hsl(120, 61%, 43%);
}

.tasks__button--remove {
  background: hsl(348, 83%, 46%);
}

.tasks__button--remove:active {
  background: hsl(348, 83%, 56%);
}

.tasks__button--remove:hover {
  background: hsl(348, 83%, 51%);
}
