@media (orientation:landscape) {
  .riceCalc {
    flex-direction: row;
  }
}
@media (orientation:portrait) {
  .riceCalc {
    flex-direction: column;
  }
}
#main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.numberSection {
  display: flex;
}
.numberBox {
  display: flex;
  align-items: center;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  margin: 0 0.5em 0 0;
  width: 9em;
  height: 1.5em;
  padding: 0 0.5em;
  font-family: 'BlenderPro', monospace;
  font-size: var(--textsize);
  background-color: var(--textbackground);
  border-radius: 0.25em;
}
.numberBox span {
  outline: none;
  color: var(--textcolor);
  text-wrap: nowrap;
}
#input1 {
  width: fit-content;
  min-width: 100%;
}
select {
  width: 4em;
  height: 1.5em;
  outline: none;
  appearance: none;
  color: var(--textcolor);
  font-family: 'BlenderPro', monospace;
  font-size: var(--textsize);
  padding: 0 0.5em;
  border: none;
  border-radius: 0.25em;
  background-color: var(--textbackground);
}
.riceCalc {
  display: flex;
  margin: 1em 0.5em;
}
#copied {
  margin-left: 0.5em;
}