/* Global */
body {
  background-color: #BCD7EE;
  overflow: hidden;
  height: 100vh;
}

.pizzeria {
  height: 600px;
  width: auto;
  position: absolute;
  bottom: 0;
  z-index: 4;
}

.image-container {
  display: flex;
  justify-content: center;
  height: 100%;

  position: relative;
  bottom: 40px;
}

.grass {
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
}

.clouds {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#order-list, #box-list {
  list-style-type: none;
  z-index: 1;
}

.box {
  position: absolute;
  left: 800px;
  top: 50vh;
  height: 12vh;
  width: auto;
  /* display: none; */
}

.order {
  position: absolute;
  left: -100px;
  top: 50vh;
  height: 12vh;
  width: auto;
}

/* terminal stuff */

#output {
  white-space: pre-wrap; /* Ensure text wraps correctly */
  font-family: monospace; /* Use a monospace font for terminal look */
  background-color: black; /* Black background for terminal look */
  color: white; /* White text color for contrast */
  padding: 10px; /* Add some padding */
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: auto; /* Show scrollbars if content overflows */
  width: inherit; /* Fixed width for the terminal */
  height: inherit; /* Fixed height for the terminal */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  position: inherit;
  z-index: 3;
  
}

#terminal {
  position: absolute;
  bottom: 145px;
  width: 295px;
  height: 190px;
  margin-left: 178px;
}

/* CSS */
.button-6 {
  align-items: center;
  background-color: #FFFFFF;
  border: 4px solid #9C1C2E;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #9C1C2E;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
  position: inherit;
  top: -50px;
  right: 0;
  z-index: 5;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}