* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --background: #121212;
  --secondaryBackground: #1f1f1f;
  --text: #ffff;
  --golden: #f5a623;
  --teal: #50e3c2;
}
body {
  background-color: var(--background);
  color: var(--text);
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 120px;
  margin: 120px auto 0 auto;
  max-width: 500px;
}
.stats-container {
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--golden);
  display: flex;
  gap: 50px;
  width: 100%;
  justify-content: space-between;
}
.details {
  width: 100%;
}
#progress {
  width: 50%;
  height: 10px;
  background-color: var(--teal);
  border-radius: 10px;
  transition: all 0.3s ease;
}
#progressBar {
  width: 100%;
  height: 10px;
  background-color: var(--secondaryBackground);
  border-radius: 5px;
  margin-top: 20px;
}
#numbers {
  width: 100px;
  height: 100px;
  background: var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
}
form {
  margin-top: 60px;
  width: 100%;
  display: flex;
  gap: 10px;
}
input {
  flex: 1;
  padding: 16px;
  background-color: var(--secondaryBackground);
  border: 1px solid var(--golden);
  border-radius: 10px;
  outline: none;
  color: var(--text);
}
button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--golden);
  border: 2px solid var(--golden);
  color: var(--text);
  font-size: 30px;
  font-weight: bold;
  outline: none;
  cursor: pointer;
}
button:hover {
  transform: scale(1);
  box-shadow: 0 0 8px #f5a623;
  transition: all 0.2s ease;
}

#task-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  width: 100%;
  list-style: none;
}
.taskItem {
  display: flex;
  background-color: var(--secondaryBackground);
  padding: 10px;
  border-radius: 10px;
  justify-content: space-between;
}
.taskItem img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  cursor: pointer;
}
.task {
  display: flex;
  align-items: center;
  gap: 10px;
}
.task input {
  width: 20px;
  height: 20px;
}
.completed p {
  text-decoration: line-through;
  color: var(--teal);
}
