*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --background: #000430;
  --secondary-background: #171c48;
  --text: #ffffff;
  --purple:#828dff;
  --teal: #24feee;
}

body{
  background-color: var(--background);
  color: var(--text);
}

.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 120px auto 0 auto;
  max-width: 500px;
  width: 100%;
 }

.stats-container{
  width: 100%;
  padding: 30px;
  border: 2px solid var(--purple);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.details{
  width: 70%;
}

.stats-numbers{
  height: 100px;
  width: 100px;
  background-color: var(--purple);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
}

#progressbar{
width: 100%;
height: 10px;
background-color: var(--secondary-background);
border-radius: 5px;
margin-top: 20px;
}

#progress{
  height: 10px;
  width: 0%;
  border-radius: 5px;
  background-color: var(--teal);
  border-radius: 5px;
  transition: all 0.3s ease;
}

form{
  margin-top: 50px;
  display: flex;
  width: 100%;
  gap: 10px;
}
input{
  flex: 1;
  padding: 15px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  background-color: var(--secondary-background);
  color: var(--text);
  outline: none;
}

#add_button{
  padding: 10px 15px;
  border: none;
  background-color: var(--purple);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  font-size: 25px;
  font-weight: bold;
}

.taskItem{
  display: flex;
  background-color: var(--secondary-background);
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  justify-content: space-between;
 
}
.todo-container{
  width: 100%;
}
.task{
  display: flex;
  justify-content: start;
  gap: 10px;
  align-items: center;
  font-size: medium;
}
.task.completed{
  text-decoration: line-through;
  color: var(--teal);
}

.checkbox{
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.icons{
  display: flex;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  margin: 0 10px;
}
.icons img{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--purple);
  box-shadow: #000430 2px 2px 5px;
}
.todo_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  width: 100%;
  list-style: none;
}