@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(180deg, black, #5b55b3);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .heading{
  display: flex;
  justify-content: space-between;
  color: white;
  font-family: cursive;
  margin-bottom: 20px;
  }

  .heading h1{
    margin-right: 15px;
    font-size: 50px;
  }
  
  .heading img{
    height: 80px;
  }

  #tagline{
    color: rgb(194, 255, 183);
    margin-bottom: 15px;
    font-family: cursive;
  }
  .container {
    background: #ffffff;
    padding: 25px;
    width: 550px;
    border-radius: 10px;
  }

  .todo-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 5px;
    justify-content: center;
  }

  .todo-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #edeef0;
    border-radius: 30px;
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
.todo-body input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 15px 0;
    font-size: 20px;
}
  
.todo-body img {
    cursor: pointer;
    border-radius: 40px;
    height: 55px;
    width: 55px;
    padding: 15px;
    size:3rem;
}
  
ul{
  margin-top: 5%;
}

ul li{
  list-style: none;
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
}

li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #edeef0;
  margin-bottom: 10px;
  border-radius: 15px;
  background-color: gold;
  text-align: left;
  width: 560px;
}

h5 {
  text-align: center;
  margin-bottom: 10px;
  color: green;
}

.todo-controls {
  width: 25px;
  height: 25px;
  padding: 3px;
  margin-right: 5px;
}

.done{
  background-color: rgb(15, 1, 72);
  color: white;
}

.circle{
  background-color: white;
  border-radius: 50%;
  border: 4px solid black;
  margin-top: 25px;
}