/* Food Buttons (Default positions and style) */
.cake, .ice_cream, .hot_dog, .burger, .taco, .pizza {
  float: left;
  outline: none;
  background: url("assets/cake.png");
  background-size: cover;
  background-color: #fcfcfc;
  border: 3px solid black;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  margin: 15px;
  width: 90px;
  height: 90px;
  background-repeat: no-repeat;
}

/* Style of images inside buttons */
.ice_cream {
  background: url("assets/ice_cream.png");
  background-repeat: no-repeat;
  background-size: 50px 90px;
  background-position-x: center;
  background-color: #fcfcfc;
}

.hot_dog {
  background: url("assets/hot_dog.png");
  background-repeat: no-repeat;
  background-size: 100px 100px;
  background-position-x: center;
  background-position-y: center;
  background-color: #fcfcfc;
}

.burger {
  background: url("assets/burger.png");
  background-repeat: no-repeat;
  background-size: 60px 60px;
  background-position-x: center;
  background-position-y: center;
  background-color: #fcfcfc;
}

.taco {
  background: url("assets/taco.png");
  background-repeat: no-repeat;
  background-size: 80px 50px;
  background-position-x: center;
  background-position-y: center;
  background-color: #fcfcfc;
}

.pizza {
  background: url("assets/pizza.png");
  background-repeat: no-repeat;
  background-size: 90px 60px;
  background-position-x: center;
  background-position-y: center;
  background-color: #fcfcfc;
}


/* Confirm button */
.vendor_button {
  margin: 20px;
  float: right;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  font-family: courier;
  color: solid white;
  font-weight: bold;
  background-color: #4dff4d;
  height: 70px;
  width: 120px;
}

/* Reset Vendor Button */
.vendor_reset {
  margin: 20px;
  float: right;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  font-family: courier;
  color: solid white;
  font-weight: bold;
  background-color: #FF0000;
  height: 70px;
  width: 120px;
  
}

/* Vendor container */
.vendor_div {
  padding-top: 10px;
  padding-left: 100px;
  padding-bottom: 10px;
  padding-right: 100px;
  background-image: url('assets/oven.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 730px;
  height: 550px;
}
