*{
    margin: 1px;
    padding: 1px;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    font-family: "Roboto", sans-serif;
    color: rgb(11, 11, 11);
    /* font-size: large; */
     /* background: linear-gradient(to left, #7d15a9, #7e62e1); */
        /* -webkit-background-clip: text; */
        /* -webkit-text-fill-color: transparent; */
        /* background-clip: text; */
        /* color: transparent; */
    /* background: linear-gradient(to right,rgb(197, 187, 187),rgb(223, 132, 40)); */
background-color:rgb(33, 33, 75);
    display: flex;
    justify-content: center;
    align-items: center;
       
}
.container{
    z-index: 1;
    margin-top: 15vh;
    width:400px;
    height:auto;
    padding: 20px;
    background:linear-gradient(135deg,#7e62e1,#610969);
    /* background: linear-gradient(135deg, #7d15a9, #7e62e1, #812fe5, #129ac9); */
border-radius: 15px;
box-shadow: 
0px 0px 50px 10px #7d15a9,
0 0 20px rgba(97, 31, 210, 0.8),
0 0 30px rgba(42, 83, 142, 0.8),
0 0 60px rgba(31, 5, 133, 0.8),
0 0 100px rgba(30, 5, 73, 0.8),
0 0 150px rgba(129, 50, 239, 0.8);
}
.name{
    width:100%;
    height: 10vh;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: larger;
}

.name img{
    width: 20px;
    height: 20px;
    margin: 0px;
    /* max-width: 100%; */
    /* max-height: 20px; */
    object-fit: cover;
    margin-left: 5px;
    border-radius: 100%;
    mix-blend-mode:lighten;
}
.add{
    display: flex;
    align-items: center;
    justify-content:space-between;
    background-color: rgb(137, 97, 180);
    border-radius: 10px;
    margin: 0px 10px 0px 10px;
    
}
.add input{
    margin-left: 25px;
    border: none;
    outline: none;
    background: transparent;
    padding: 5px;

}
.add button{
    color: white;
    border: none;
    box-sizing: border-box;
    padding: 10px 20px;
    outline: none;
    box-sizing: border-box;
    background-color: rgb(104, 54, 26);
    border-radius: 15px;
    cursor: pointer;
}
ul li{
    list-style: none;
    padding: 10px 30px;
    user-select: none;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
}
ul li::before{
    content: '';
    position:absolute;
    height:20px;
    width:20px;
    border-radius: 50%;
    /* border: 1px solid rgb(4, 18, 90); */
    background-image: url(logo.png);
    background-size: cover;
    background-position: center;
    top: 8px;
    left:5px;
    
}
ul li.first{
text-decoration: line-through;
}
ul li.first::before{
background-image: url(checked.jpg);
}
ul li span{
    position: absolute;
    right:10px;
    top:5px;
    width: 30px;
    height: 22px;
    font-size: 20px;
    text-align: center;
}
ul li span:hover{
background-color: rgb(119, 42, 197);
border-radius: 10px;
}
.add ::placeholder{
    color: black;
}