/* .container{
   display: flex;
    justify-content: center;
    align-items: center;
    

}

#todo-list{
    justify-content: center;
    align-items: center;
  
} */


body {
    background-color: black;
    color: white;
    display: flex;
     justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif; 
}

.container {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
input[type="text"] {
    padding: 10px;
    margin-right: 10px;
    border-radius: 4px;
    border: none;
}
#todo-list-button{
    padding: 10px;
    border-radius: 5px;
    color: white;
    background-color: red;
}

#todo-list{
  
    list-style-type: none;
    padding: 0;
}

li{
     display: flex;
    justify-content: space-between;
    margin: 10px 0;
   

}

#deleting{
    color: white;
    background-color: red;
    font-size: 15px;
    padding: 5px;
}



