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

body{
    min-height: 100vh;
    background: linear-gradient(80deg, #52d2ef, #1b7fc7);
    display:flex;
    justify-content: center;
    align-items: center;
}
.to-do{
    display: flex;
    justify-content: space-around;

}
#mode{
    margin:1rem;
    margin-top:0;
    background-color:#fff;
    color:#fff;
    border:none;
    padding:0.5rem;
    border-radius: 20px;
    margin-left: 3rem;
    margin-right: 0;
    font-weight: 800;
}
h1{
    color:#1a0958
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding:20px;
    border-radius:10px;
    border-radius: 12px;
}
.inputbox{
    display: flex;
    align-items: center;
    justify-content: space-around;
    border:1px solid black;
    background-color:#edeef0 ;
    border-radius: 30px;
    height:2rem;
    padding:1rem;
    padding-right:0;
    margin-top: 1rem;
    border:none;
}
#input{
    background-color:#edeef0;
    border: none;
    outline:none;

}

#task{
    background-color: rgb(19, 98, 254);
    border-radius: 30px;
    color:#fff;
    width: 5rem;
    border: none;
    height:2rem;
    padding-right:0;
}
/* #list{
    display: flex;
    flex-direction:column;
    justify-content: space-around;
    list-style: none;
    padding:2rem;
    cursor: pointer;
    gap:10px;
} */
ul{
    margin-top:2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 10px;
    border-radius: 5px;
    gap:5px;
    list-style: none;
    border-radius: 20px;
    list-style:none;
    width:100%;
    font-size: 20px;
    padding-left:1.5rem;
    cursor: pointer;
}
.delete-btn{
    border: none;
    margin-left:10rem;
    margin-right:0.5rem;
    font-weight: bold;
    color:#fff;
    cursor: pointer;
    padding:1px;
    background-color: rgb(19, 98, 254);
    border-radius: 30px;
    color:#fff;
    width: 4rem;
    border: none;
    height:2rem;
    padding-right:0;
}
.edit-btn{
    border: none;
    margin-left:0;
    /* margin-right:2rem; */
    font-weight: bold;
    color:#fff;
    cursor: pointer;
    padding:1px;
    background-color: rgb(19, 98, 254);
    border-radius: 30px;
    color:#fff;
    width: 4rem;
    border: none;
    height:2rem;
    /* padding-right:0;    */
}
.update-btn{
    
}
li span{
    color: rgb(2, 138, 11);
    padding:1rem 2rem;
}
/* .complete-btn:hover {
    background-color: green;
    color: white;
    border-radius: 50%;
}   */
.completed{
    text-decoration: line-through;
    color:  rgb(175, 173, 173);
}
.dark {
  background: #0F172A;
}
.check-box {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
}