*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    cursor:pointer;
}

body{
    background-color: rgb(4, 54, 77);

}
@media screen and (min-width:300px){

 .container{
    display:flex;
     align-items: center; 
    justify-content: center;
    flex-direction: column;
} 

  h1{
    margin-top: 30px;
    color:rgb(241, 241, 89);
        font-family: "Archivo Black", sans-serif;
        font-weight: 400;
        font-style: normal;
      }
      
 .top{ 
     display:inline; 
}   
#inputbox{
    padding:10px;
    border-radius:10px;
    width:350px;
    margin:10px;
    height:45px;
    outline:none;
}
#btn{
    border-radius:20px;
    width:100px;
    height:40px;
    background-color: rgb(73, 184, 73);
    padding:10px;
    border:none;
    font-size: 15px;
    font-weight: bolder;
}
#btn:hover{
    /* background-color:rgba(151, 46, 104, 0.945); */
    background-color: rgb(137, 111, 211);
    color:white;
    box-shadow: 5px 5px  15PX rgb(137, 111, 211);;
}
li{
    
    list-style-type:none;
    border:2px solid white;
    color:black;
    padding:15px;
    margin-top:15px;
     border-radius:10px; 
    width:450px;
   height:70px; 
    background-color: #d4edda;
}
li:hover{
    box-shadow: 7px 7px 10px whitesmoke;
}
.deletebtn{
    background-color:rgba(89, 148, 216, 0.685);
    box-shadow: 5px 5px 10px rgba(89, 148, 216, 0.685);
    border-radius:20px;
    font-weight: bolder;
    color:white;
    float:right;
    padding:5px 10px;
}
.editbtn{
    background-color:rgba(89, 148, 216, 0.685);
    box-shadow: 5px 5px 10px rgba(89, 148, 216, 0.685) ;
    border-radius:20px;
    font-weight: bolder;
    color:white;
    float:right;
    padding:5px 10px;
    width:70px;
}
i{
color:black;
}


   li.complete {
            text-decoration: line-through;
            color: #155724;
            background-color:lightgreen;
            
        }
        li.complete::before {
            content: "✔️ ";
             font-size: 18px;
             

        }
    }


