* {
    margin:0px;
    padding:0px;
}
body {
    background: #222;
    color: #fff;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
.cruds {
    width:80%;
    margin:auto;
}
.head{
    text-align:center;
    text-transform:uppercase;
    margin:10px 0;
}
input {
    width:100%;
    height:30px;
    outline:none;
    border:none;
    background:#111;
    margin:4px 0;
    border-radius: 7px;
    padding:4px;
    color:#fff;
    transition:0.65s;
    text-align: center;
}
input:focus{
    background:#000;
    transform:scale(1.05)
}
.price > input{
    width:20%;
}
#total {
    background: #a00d02;
    
    border:none;
    border-radius:7px;
    padding:4px 2px;
     
}
#deleteAllDiv{
    margin:20px 0;
}
#total::before{
    content:"Total: "
}
button{
    width:100%;
    height:30px;
    cursor:pointer;
    background:#170194;
    border:none;
    border-radius:13px;
    color:#fff;
    transition-duration: 0.5s;
    margin:5px 0px;
}
button:hover{
    background:#2504e4; 
    letter-spacing: 1.5px;
    
}
.buttons{
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    gap:8%;
    
}
table{
    width:100%;
    text-align:center;
    margin:10px 0;
}
table th{
    text-transform:uppercase;
}
table td, th{
    padding:5px; 
}