*{
    margin: 0;
    padding: 0;
}
body{
    background: #222;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
}
.crud{
    width: 80%;
    margin:  auto;
}
.head{
    text-align: center;
    text-transform: uppercase;
    margin: 20px 0;
}
input{
    width: 100%;
    height: 40px;
    outline: none;
    border: none;
    background: #111;
    margin: 5px 0;
    border-radius: 10px;
    padding: 5px;
    color: #fff;
    transition: .3s;
}
input:focus{
    background: #000;
    transform: scale(1.05);
}
.price input{
    width: 20%;
}
#total{
background: #a00d02;
padding: 5px ;
border-radius: 5px;
}
#total::before{
    content: 'Total:';
}
button{
    width: 100%;
    height: 35px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    background: #ffbd39;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: .5s;
    margin: 7px 0;
}
button:hover{
    background: #f0a308;
    letter-spacing: 2px;
}
.btnSearch{
    display: flex;
    justify-content: space-between;
}
.btnSearch button{
    width: 45%;
}
table{
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
#update, #delete{
    height: 30px;
    width: 70%;
    font-size: 15px;
}
table th{
    text-transform: uppercase;
    font-size: 18px;
   
}
th,td{
    padding: 5px 0;
}
#deleteAll{
    margin: 20px 0;
}