body {
  font-family: 'Poppins', sans-serif;
  background-image: url(../Images/stars-changing-colors-ezgif.com-speed.gif);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.todo-container {
  background: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 350px;
}

h1 {
  text-align: center;
  color: #333;
}

.input-section {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

#taskInput {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#addBtn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

#addBtn:hover {
  background: #45a049;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  background: #f9f9f9;
  margin: 8px 0;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li.completed {
  text-decoration: line-through;
  color: gray;
}

.buttons {
  display: flex;
  gap: 5px;
}

button {
  border: none;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.edit {
  background-color: #63aae4;
  color: white;
}

.delete {
  background-color: #f44336;
  color: white;
}

.complete {
  background-color: #c42de2;
  color: white;
}
