body {
  position: relative;
  min-height: 100vh;
  aspect-ratio: 8/5;
  background-size: cover;
  aspect-ratio: 8/5;
  background-repeat: no-repeat;
}
button {
  opacity: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  background-color: transparent;
  transition: all 1s;
  transform: scale(1);
}

button:hover {
  opacity: 100%;
  transition: all 0.5s;
  transform: scale(1.01);
}

#inventoryContainer {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: row;
}

#inventory {
  display: flex;
  flex-direction: row;
}

.backButton {
  position: fixed;
  bottom: 0;
  left: 0;
}
.invItem {
  background-color: rgba(255, 255, 255, 0.726);
  margin: 5px;
}

.invItem img {
  width: 100px;
}

.navButton {
  height: 12%;
}

.closeUp {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}

.closeUp img {
  height: 100%;
  width: 100%;
}

.dotgothic {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#dialog {
  width: 100%;
  text-align: center;
  border: none;
  outline: none;
  background-color: rgba(254, 254, 254, 0.888);
  font-family: "DotGothic16", sans-serif;
  font-size: x-large;
}

#nextCont {
  display: flex;
  align-self: center;
}
#next {
  width: 30%;
  margin: 0px 15px;
  transform: scale(1);
}

#next:hover {
  transition: all 0.6s;
  transform: scale(1.2);
}
