*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
body{
  background-color:aqua;
  width: 100%;
  height: 100vh;
}
h1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family:Georgia, 'Times New Roman', Times, serif;
}
img{
  width: 45px;

}
.container{
  background-color: wheat !important;
  max-width: 550px;
  position: relative;
   top:50%;
   left:50%;
   transform: translate(-50%,-50%);
   padding: 10px;
   border-radius: 10px;
   box-shadow: 0 5px 8px rgba(0,0,0,0.6);
}
.input{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom:30px;
}
input::placeholder{
  color:black;
}
#input-field{
  width:70%;
  padding:10px;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5)inset;
  border-radius:30px;
  background-color:white;
}
.btn{
  padding: 10px 20px;
  border-radius: 30px;
  border:none;
  font-size: 18px;
  font-weight: 700; 
  background-color: #88322c;
  color: white;
  transition: all 0.4s;
  cursor: pointer;
}
.btn:hover{
  background-color:#ffc470;
  color: black;
}
ul li{
  list-style: none;
  width: 100%;
  border:none;
  padding: 10px 50px;
  border-radius: 30px;
  margin-block: 10px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  user-select: none;
}

ul li::before{
  content:"";
  background:url(imgs/undone.png);
  background-size: cover;
  position: absolute;
  top:6px;
  left: 8px;
  width: 30px;
  height: 30px;
}
.checked{
  background-color:#88322c;
  color: white;
}
.checked::before{
  background: url(imgs/done.png);
  width: 30px;
  height: 30px;
  background-size:cover;
}
span{
  position: absolute;
  right:5px;
  top:6px;
  font-size:25px;
  font-weight: 700;
  width:30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
} 
ul li.checked span:hover{
  background-color:aqua;
  color:black;
}

.edit-btn {
  position: absolute;
  right: 45px;
  top: 6px;
  font-size: 20px;
  transition: color 0.3s;
}

.edit-btn .checked span:hover {
  color:black;
}
