body {
  margin: 0px;
}
#todoBtn {
  cursor: pointer;
}
.todoDeleteBtn {
  margin-left: 10px;
  cursor: pointer;
}

#todoUl {
  list-style-type: "";
  min-height: 500px;
}

.dragHandle:active {
  cursor: grabbing;
}

.completed .todoText {
  text-decoration: line-through;
  opacity: 0.6;
  user-select: none;
}
#todoUl li {
  background-color: rgb(51, 49, 49);
  height: 62px;
  display: flex;
  align-items: center;
  gap: 10p;
  padding-right: 15px;
  margin-bottom: 2px;
}
#fieldsetTodo {
  background-color: rgb(41, 39, 39);
  color: white;

  height: 500px;
  margin-left: 0px;
  border-color: black;
  margin-right: 0px;
}

.todoText {
  word-break: break-word;
  flex: 1;
}
