* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
  color: lightblue;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
}


header {
  font-size: 2rem;
}

h1 {

  color: darkblue;
}

header,
form {
  min-height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
form input,
form button {
  padding: 0.5rem;
  font-size: 2rem;
  border: none;
  background: white;
}
form button {
  color: #ff6f47;
  background: #f7fffe;
  cursor: pointer;
  transition: all 0.3s ease;
}
form button:hover {
  background: #ff6f47;
  color: white;
}
.todo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.todo-list {
  min-width: 30%;
  list-style: none;
}

.todo {
  margin: 0.5rem;
  background: white;
  font-size: 1.5rem;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 1s ease;
}
.filter-todo {
  padding: 1rem;
}
.todo li {
  flex: 1;
}

.todo-item {
  padding: 0rem 0.5rem;
}


.trash-btn,
.complete-btn {
  background: #ff6f47;
  color: white;
  border: thin solid black;
  padding: 1rem;
  cursor: pointer;
  font-size: 1rem;
  text-align:right ;
}
.complete-btn {
  background: rgb(11, 212, 162);
}
.fa-trash,
.fa-check {
  pointer-events: none;
  text-align:right ;
}

.flexAdroite {
  margin-left: auto ;
}
