body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.todo-app {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
}
.todo-app__title {
  margin-bottom: 1rem;
  color: #4CAF50;
}
.todo-app__input {
  display: flex;
  margin-bottom: 1rem;
}
.todo-app__input-field {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem 0 0 0.5rem;
  outline: none;
}
.todo-app__input-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
}
.todo-app__input-btn:hover {
  background: rgb(60.5577689243, 139.4422310757, 63.7450199203);
}
.todo-app__list {
  list-style: none;
  padding: 0;
}
.todo-app__list-item {
  background: #f9f9f9;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.todo-app__list-item-remove {
  color: red;
  cursor: pointer;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */