*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --secondaryBackground: #873b28b1;
  --text: #fff;
  --purple: #ff854f;
  --teal: #fe804b;
}
body{
  background: url(img/pngtree-achieving-business-goals-a-laptop-and-todo-list-concept-in-flat-picture-image_5823915.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  color: var(--text);
  overflow-y: hidden;
}
.container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 120px auto 0 auto;
  max-width: 500px;
}
.statsContainer{
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--purple);
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(5px);
}
.details{
  width: 100%;
}
#progressBar{
  width: 100%;
  height: 10px;
  background-color: var(--secondaryBackground);
  border-radius: 10px;
  margin-top: 20px;

}
#progress{
  width: 0%;
  height: 10px;
  background-color: var(--teal);
  border-radius: 10px;
  transition: all 0.3s ease;
}
#numbers{
  width: 100px;
  height: 100px;
  background-color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
}
form{
  margin-top: 60px;
  width: 100%;
  display: flex;
  gap: 10px;
}
input{
  padding: 10px;
  background-color: var(--secondaryBackground);
  border: 1px solid var(--purple);
  flex: 1;
  border-radius: 10px;
  outline: none;
  color: var(--text);
}
button{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--purple);
  color: var(--text);
  font-size: 30px;
  font-weight: bold;
  outline: none;

}
#taskList{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  width: 100%;
  list-style: none;
}
.taskItem{
  width: 100%;
  display: flex;
  background-color: var(--secondaryBackground);
  padding: 10px;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
.task{
  display: flex;
  align-items: center;
  gap: 10px;
}
.task input{
  width: 20px;
  height: 20px;
}
.checkbox{
  accent-color: var(--teal);
}
.taskItem img{
  width: 24px;
  height: 24px;
  margin: 0 10px;
  cursor: pointer;
}
.completed p {
  text-decoration: line-through;
  color: var(--teal);
}