*{
    margin: 0;
    padding: 0;
}
body{
    background: rgb(197, 198, 199);
    color:rgb(0, 0, 0);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.crud{
    width: 80%;
    margin: auto;
}
.head{
    text-align:center;
    text-transform: uppercase;
    margin: 10px 0;
}
input{
    width: 100%;
    height: 40px;
    outline: none;
    border:none;
    background:#1f2833;
    color:rgb(255, 255, 255);
    margin: 4px 0;
    border-radius: 5px;
    padding: 4px;
}
input:focus{
    background: rgb;
    transform: scale(1.1);
}
.price input{
    width: 20%;
}
#total{
    background: rgb(102, 252, 241);
    padding: 5px 2px;
    border-radius: 4px;
    width: 100%;
    
}
#total::before{
    content: 'Total: ';
}
button{
    width: 100%;
    height: 30px;
    border:none;
    cursor: pointer;
    background: rgb(69, 162, 158);
    color: #fff;
    border-radius: 10px;
    font-size: medium;
    text-transform: uppercase;
    transition: 0.5s;
}
button:hover{
    background: rgb(69, 162, 158);
    letter-spacing: 1.5px;
}
.btn{
    display: flex;
    justify-content: space-between;
}
.btn button{
    width: 100%;
}
table{
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
table th{
    text-transform: uppercase;
    margin: 10px 0;
}
th,td{
    padding: 5px;
}
#deleteall{
margin: 10px 0;
}
