* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: brown;
}

.todo-container {
  margin: 25rem;
  background-color: rgb(236, 233, 233);
  line-height: 2rem;
  border: 3px solid white;
}

input {
  border: 1px solid brown;
}

li {
  list-style: none;
}

.todo-title {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
}

.todo-input {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0.5rem 1.5rem 0.5rem;
}

.task-input {
  font-style: italic;
  width: 90%;
}

.bx {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
}

.todo {
  display: flex;
  justify-content: space-evenly;
  padding: 0.5rem;
}

.todo-item {
  flex: 1;
  padding-left: 1rem;
}

.inp {
  width: 96%;
}

hr {
  width: 100%;
  color: rgba(90, 87, 87, 0.142);
}

.remove-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.071);
  height: 3rem;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.55);
}

#input-btn {
  cursor: pointer;
}

.task-list {
  flex: 1;
  margin-right: 1rem;
}

.open {
  display: block;
}

.close {
  display: none;
}

.completed {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.55);
}

.trash-btn,
.complete-btn {
  cursor: pointer;
}

.bx-trash {
  pointer-events: none;
}

button {
  border: none;
  background-color: white;
}
