*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container{
    width: 100%;
    /* height: 100vh; */
    /* padding-bottom: 0; */
    /* background: linear-gradient(120deg, #153677, #4e085f); */
    /* padding: 10px; */
    position: relative;
    z-index: -2;
    
     
}

#particles-js{
    width: 100%;
    height: 100%;
    position: fixed;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.7)), url("./5.jpg");
    background-repeat: no-repeat;
    background-size: cover ;
    background-position: 50% 50%;
    
    

}
.body particles-js{
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: -100; */
}

.todo-app{
    width: 100%;
    max-width: 61%;
    min-width: 20%;
    background: white;
    margin: 8% auto;
    margin-bottom: -30%;
    padding: 3% ;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 9999 !important;
    background: rgb(223,120,104);
background: linear-gradient(137deg, rgba(223,120,104,1) 0%, rgba(207,106,93,1) 13%, rgba(171,74,67,1) 42%, rgba(164,67,62,1) 48%, rgba(133,40,40,1) 73%);
   
    
}

.todo-app h1{
    color: #002765;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    
}

.todo-app h1 img{
    width: 5vw;
    height: 5vw;
    
    margin-right: 30px;
}

h1{
    font-size: 2.5vh;
}

.row{
    display: flex;
    align-items: center;
    /* flex-direction: column; */
    justify-content: space-between;
    background: #edeef0;
    border-radius: 30px;
    padding-left: 20px;
    margin-bottom: 25px;

}

input{
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 1%;
    font-weight: 14px;
}

button{
    border: none;
    outline: none;
    padding: 3%;
    background: #dc5d09;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25%;
}
button:hover{
    background-color: #98470dfb;
}

ul li{
    list-style: none;
    font-size: 17px;
    padding: 12px 8px 12px 50px;
    user-select: none;
    cursor: pointer;
    position: relative;
}

ul li::before{
    content:'';
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-image: url(./unchecked.png);
    background-size: cover;
    background-position: center;
    left: 8px;
    top: 7.5px;
}

ul li.checked{
    color: #555;
    text-decoration: line-through;
}

ul li.checked::before{
    background-image: url(./checked.png);
}

/* styling the cross symbol */

ul li span{
    position: absolute;
    right: 0;
    top: 4px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #555;
    line-height: 40px;
    text-align: center;
}

ul li span:hover{
    background: #584939;
    border-radius: 50%;
    color: #edeef0;
}


@media screen and (max-width: 600px){
    .todo-app{
        margin: 60% auto;
        max-width: 76%;
        margin-bottom: -80%;

        background: rgb(223,120,104);
        background: linear-gradient(137deg, rgba(223,120,104,1) 0%, rgba(207,106,93,1) 13%, rgba(171,74,67,1) 42%, rgba(164,67,62,1) 48%, rgba(133,40,40,1) 73%);
    }
    button{
        padding: 2%;
        border-radius: 20%;
        background: #dc5d09;
    }
    button:hover{
        background-color: #98470dfb;
    }
    ul li span:hover{
        background: #584939;
        border-radius: 50%;
        color: #edeef0;
    }
    
}