body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('lifestyle-scene-anime-style-with-person-doing-daily-tasks.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 20px;
  color: black;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 32px gray;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

h2, h3 {
  color: deepskyblue;
  margin-bottom: 20px;
}

#addTask {
  padding: 12px;
  font-size: 16px;
  width: 250px;
  border: 2px solid deepskyblue;
  border-radius: 8px;
  margin-right: 10px;
  transition: all 0.3s;
  background: white;
}

#addTask:focus {
  outline: none;
  border-color: dodgerblue;
  box-shadow: 0 0 10px deepskyblue;
}

#submit {
  padding: 12px 24px;
  background-color: deepskyblue;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

#submit:hover {
  background-color: dodgerblue;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px deepskyblue;
}

ul {
  list-style-type: none;
  padding-left: 0;
  max-width: 100%;
  margin: 20px 0;
}

ul li {
  background: white;
  margin: 10px 0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px lightgray;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}

ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px silver;
}

ul li button {
  background-color: deepskyblue;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  flex-grow: 1;
  text-align: left;
  transition: all 0.3s;
}

ul li button:hover {
  background-color: dodgerblue;
}

#doneList li {
  background-color: honeydew;
  color: seagreen;
  font-style: italic;
}

.input-section {
  margin-bottom: 30px;
}

.completed-section {
  margin-top: 30px;
}
#reset{
  margin-left:10px;
  background-color: tomato; 
  color: white; 
  border: none; 
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

