* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #333;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.container {
    width: 80%;
    height: 100%;
    margin: auto;
}

.head {
    text-align: center;
    text-transform: uppercase;
    margin: 10px;
}

input{
    width: 100%;
    height: 45px;
    padding: 5px;
    margin: 5px;
    outline: none;
    border: none;
    background-color: #111;
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
}

input:focus {
    background: #000;
    transform: scale(1.1);
}

.price input{
    width: 20%;
} 

#total {
    background-color: #a23333;
    padding: 5px 2px;
    margin: 8px;
    border-radius: 4px;
} 

#total::before {
    content: "Total: ";
}

button {
    width: 100%;
    height: 40px;
    padding: 5px;
    margin: 5px;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #310044;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .5s ;
}

button:hover {
    background: #51045f;
    letter-spacing: 2px;
}

.btnsearch {
    display: flex;
    justify-content: space-between;
}

table {
    width: 100%;
    text-align: center;
    margin: 10px 0 ;
    text-transform: lowercase;
}

table td {
    padding: 5px;
}