body{
    font-family: 'Poppins', sans-serif;
background: #23074d;  
background: -webkit-linear-gradient(to right, #cc5333, #23074d);  
background: linear-gradient(to right, #cc5333, #23074d); 



}
.container{
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 150px;
}


.content{
    /* height: 200px; */
    height: fit-content;
    width: fit-content;
    padding: 30px;
    background-color: whitesmoke;
    border: none;
    border-radius: 15px;
    -webkit-box-shadow: 0px -1px 33px 5px rgba(0,0,0,0.9); 
    box-shadow: 0px -1px 33px 5px rgba(0,0,0,0.9);
}
input{
    padding: 10px;
    border: 1px solid gray;
    /* border-radius: 12px; */
    width: fit-content;
    font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: 15px;
        width: 300px;
        
    }
    
    button{
        color: white;
        background-color: orangered;
        border: none;
        /* border-radius: 20px; */
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 900;
        margin-left: -10px;
        padding: 11px 22px;
        text-align: center;
        cursor: pointer;
    }

    button:hover{
        border: 1px solid gray;
        color: orangered;
        background-color: white;

    }

    #list-container{
   font-size: 17px;
    }
    ul li{
        list-style-type: none;
        padding: 12px 8px 12px 5px;
        user-select: none;
        cursor: pointer;
        position: relative;
    }
   
    ul li::before{
        content:'';
        height: 28px;
        width: 28px;
        border-radius: 50%;
        background-image: url(images/unchecked.png);
        background-size: cover;
        background-position:center;
        position: absolute;
        top: 12px;
        left: -38px;
    }

    ul li.checked{
      color: #555;
      text-decoration:line-through
    }

    ul li.checked::before{
        background-image: url(images/checked.png);
    }

    ul li span{
        position: absolute;
        right: 0;
        top: 5px;
        width: 40px;
        height: 40px;
        font-size: 22px;
        color: #555;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
    }

    ul li span:hover{
        background-color: #edeef0;
    }

    