.section {
  background: white;
}

.section__form {
  padding: 15px;
  margin-left: 15px;
  margin-right: 15px;
}

.section__addTask {
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 15px;
  border-bottom: 1px solid rgb(184, 182, 182);
}

.section__header {
  border-bottom: 1px solid rgb(184, 182, 182);
  display: grid;
  grid: gap 15px;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 15px;
}

@media (max-width: 767px) {
  .section__header {
    grid-template-columns: 1fr;
  }
}

.section__title {
  margin: 0;
}

.section__tasks {
  padding: 15px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
}
.section__buttons {
  border: none;
  background-color: transparent;
  color: hwb(188 1% 43%);
  margin: 0 0 0 20px;
  font-size: medium;
  cursor: pointer;
}

@media (max-width: 767px) {
  .section__buttons {
    flex-basis: 100%;
    margin: 10px;
  }
}

.section__buttons:hover {
  color: hsl(180, 100%, 30%);
}

.section__buttons:disabled {
  color: #ccc;
}
