* {
  margin: 0;
  overflow: hidden;
}

header {
  width: 100vw;
  height: 35px;
  position: fixed;
  background: black;
  opacity: .65;
  color: white;
  font-family: sans-serif;
}

#headertext {
  margin-top: 9px;
}

main {
  width: 100vw;
  height: 100vh;
  padding-top: 50px;
  background: #9B570C;
}

#container {
  width: 520px;
  margin: 0 auto;
}

#left {
  width: 300px;
  height: 80vh;
  float: left;
  position: relative;
  margin-right: 20px;
}

#menu {
  width: 100%;
  height: 40%;
}

option {
  font-size: 20px;
}

.foodtype {
  font-size: 12px;
  background: gray;
  color: white;
}

#items {
  width: 100%;
  height: 50px;
  margin-bottom: 30px;
}

#quantitycontainer {
  width: 45px;
  height: 100%;
  float: left;
  position: relative;
  margin-left: 20px;
}

#additem, #clearorder {
  width: 80px;
  height: 30px;
  float: left;
  position: relative;
  background: #5973A6;
  margin-left: 25px;
  margin-top: 8px;
  color: white;
  text-align: center;
  padding-top: 10px;
}

label {
  font-size: 12px;
}

input {
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
}

#qty {
  width: 30px;
  margin-left: 3px;
  margin-bottom: 0;
}

#placeorder {
  width: 100%;
  height: 40px;
  background: #59A673;
  margin-top: 10px;
  color: white;
  text-align: center;
  padding-top: 12px;
}

#right {
  width: 200px;
  height: 80vh;
  float: left;
  position: relative;
  background: white;
}

#itemoutput {
  width: 67%;
  height: 88%;
  float: left;
  margin-left: 3%;
}

#priceoutput {
  width: 25%;
  height: 88%;
  float: right;
  margin-right: 3%;
}

#totalstext {
  width: 50%;
  height: 12%;
  float: left;
  margin-left: 30px;
}

#totalsoutput {
  width: 30%;
  height: 12%;
  float: right;
}

footer {
  width: 100vw;
  height: 30px;
  position: fixed;
  color: white;
  font-size: 12px;
  background: black;
  bottom: 0;
  font-family: sans-serif;
}

#footertext {
  margin-top: 5px;
  text-align: center;
}
