a{
  text-decoration: none !important;
}

ul {
  list-style-type: none;
}

.todos {
  cursor: pointer;
}

.toggler-target .active li{
  color:red !important;
}

li{
  padding: 2px;
}

td{
  background-color: #FFE7CE;
  font-size: 15px;
  margin: 20px;
  padding: 30px;
   font-family: times new roman;
  width: 650px;
}
td .title{
font-size: 20px;
text-decoration: underline brown 2px;
font-weight: bold;
}
.todo::before {
  content: "\2610";
  display: inline-block;
  margin-right: 0.5rem;
}

.todo.active {
  text-decoration: line-through;
  color: #888;
}

.todo.active::before {
  content: "\2611";
}

/* toggler */
.toggler::before {
  content: "\25B6";
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.3s ease-in-out;
}

.toggler.active::before {
  transform: rotate(90deg);
}

.toggler-target {
  display: none;
}

.toggler-target.active {
  display: block;
}