@import url("https://fonts.googleapis.com/css?family=Inconsolata&effect=fire-animation");
@import url('https://fonts.googleapis.com/css2?family=Mynerve&family=Inconsolata:wght@200&display=swap');

html { 
  background: url("./bg-bean.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

:root {
  --prim: rgb(58, 59, 53);
  --sec: rgb(37, 36, 36);
}

body {
  font-size: 13px;
}

h1 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 60px;
  text-align: center;
}

.maincontainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

button {
  font-family: 'Mynerve', cursive;
  color: #fff;
  background-color: var(--sec);
  border-color:  var(--sec);
  border-style: double;
  width: 100%;
}

button.submit {
  color: #fff;
  border-color: #fff;
  background-color: var(--sec);
  width: 5rem;
}

table.menu {
  min-width: 500px;
  background-color: var(--sec);
  border-collapse: collapse;
  border-width: 2px;
  border-color: #fff;
  border-style: double;
  color: #fff;
  table-layout: fixed;
  text-align: center;
  width: 25vw;
}

table.menu td,
table.menu th {
  border-width: 2px;
  border-color: #fff;
  border-style: double;
}

.order {
text-indent: 3%;
color: rgb(58, 59, 53);
background-color: var(--sec);
background-color: rgb(255, 255, 255);
min-width: 250px;
width: 12.5vw;
}

.tax, .total {
font-weight: bold;
}

.order_box {
  font-family: 'Mynerve', cursive;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 2.5%;
}

.receipt_box {
  font-family: 'Inconsolata', monospace;
  text-indent: 3%;
  color: rgb(58, 59, 53);
  background-color: var(--sec);
  background-color: rgb(255, 255, 255);
  min-width: 250px;
  width: 12.5vw;
}

button.submitOrder {
  color: #fff;
  border-color: #fff;
  background-color: var(--sec);
  min-width: 250px;
  width: 12.5vw;
}