* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.main-section {
  background: transparent;
  margin: 0 auto;
  border-radius: 10px;
}

.add-section {
  width: 100%;
  background: #fff;
  margin: 0px auto;
  padding: 10px;
  border-radius: 5px;
}

.text-input {
  width: 95%;
  height: 40px;
  margin: 10px auto;
  border: 2px solid #ccc;
  font-size: 16px;
  border-radius: 5px;
  padding: 0px 5px;
}

.add-section textarea {
  height: 120px;
}

.add-section button {
  display: block;
  width: 95%;
  height: 40px;
  margin: 0px auto;
  border: none;
  outline: none;
  background: #0088FF;
  color: #fff;

  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.add-section button:hover {
  box-shadow: 0 2px 2px 0 #ccc, 0 2px 3px 0 #ccc;
  opacity: 0.7;
}

.add-section button span {
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  width: 18px;
  height: 18px;
}

#errorMes {
  display: block;
  background: #f2dede;
  width: 95%;
  margin: 0px auto;
  color: rgb(139, 19, 19);
  padding: 10px;
  height: 35px;
}

.show-todo-section {
  width: 100%;
  background: #fff;
  margin: 0 auto 30px;
  border-radius: 5px;
}

.todo-item {
  margin: 10px auto;
  padding: 15px;
  border: #ccc 1px solid;
  border-radius: 5px;
}

.todo-item h2 {
  display: inline-block;
  padding: 5px 0;
  font-size: 17px;
  color: #555;
}

.todo-item .note,
.todo-item .description {
  margin-left: 30px;
  margin-bottom: 5px;
}

ul.notes {
  margin-left: 50px;
}

ul.notes li {
  padding-left: 0;
  margin-bottom: 5px;
  font-size: 0.90em;
}

.add-note {
  height: 25px;
}

.todo-item small {
  display: block;
  width: 100%;
  padding: 5px 0px;
  color: #888;
  padding-left: 30px;
  font-size: 14px;
}

.remove-to-do {
  display: block;
  float: right;
  width: 20px;
  height: 20px;
  color: rgb(139, 97, 93);
  text-decoration: none;
  text-align: right;
  padding: 0px 5px 8px 0px;
  border-radius: 50%;
  transition: background 1s;
  cursor: pointer;
}

.remove-to-do:hover {
  background: rgb(139, 97, 93);
  color: #fff;
}

.strike {
  color: #999 !important;
  text-decoration: line-through;
}

.todo-item textarea,
.todo-item input {
  margin: 0px 5px;
}

.empty {
  font-size: 16px;
  text-align: center;
  color: #cccc;
}

h1 {
  width: 95%;
  margin: 0 auto 20px;
}

.add-todo-note {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin-top: 7px;
}
.add-note-btn {
  margin-top: 2px;
  margin-left: 30px;
  font-size: 0.7em;
  padding: 1px 3px;
}

.add-todo-note .note {
  font-size: 0.8em;
}

.add-note-section {
  display: none;
}