body {
  padding: 0;
  margin: 0;
  background-color: black;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

main {
  display: flex;
  align-items: flex-start;
}

#leftUI {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layout img {
  /* width: 100vw;
  height: 100vh;
  */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Make images fit the container */
  height: 100%;
  background-position: center;
  object-fit: contain;
  pointer-events: none;
  /* z-index: -1; */
  /* margin: 5%; */
}

.layout {
  width: 100vw;
  height: 100vh;
  position: relative;
}

#nav-box {
  display: flex;
  background-color: rgb(65, 85, 92);
  justify-content: space-around;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  /* position: relative; */
  height: 50vh;
  width: auto;
  margin: 30px;
  border-radius: 10px;
}

.btn {
  /* margin: 30px 10px; */
  margin: auto;
  display: inline-block;
  border: 0;
  /* line-height: 2.5; */
  min-height: 3em;
  width: auto;
  padding: 0 1em;
  font-size: 2em;
  text-align: center;
  color: white;
  text-shadow: 1px 1px 1px black;
  border-radius: 10px;
  background-color: rgb(9, 32, 41);
  cursor: pointer;
}

.btn:hover {
  background-color: rgb(117, 14, 17);
}

.btn:active {
  box-shadow:
      inset -2px -2px 3px rgb(255 255 255 / 0.6),
      inset 2px 2px 3px rgb(0 0 0 / 0.6);
}

#char {
  opacity: 1;
  transition: opacity 0.4s ease;
}

#charNavBox {
  display: flex;
  background-color: rgb(65, 85, 92);
  justify-content: space-around;
  position: relative;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.5em;
  text-shadow: 1px 1px 1px black;
  color: white;
  height: 15vh;
  width: 25vw;
  padding: 20px;
  margin: 30px;
  border-radius: 10px;
}

.var-container {
  display: inline-block;
  position: relative;
  /* top: 220px;
  left: -7px; */
  justify-content: space-around;
  text-align: center;
  padding: 20px;
  margin: auto;
  /* width: 90px; */
}

.var-container p {
  color: white;
  text-shadow: 2px 2px 2px black;
  text-align: center;
  justify-content: center;
  font-size: 1.2em;
}

.var-container input {
  width: 5em;
  height: 2em;
  border-radius: 10px;
  background-color: rgb(9, 32, 41);
  border: 2px solid #000000;
  font-size: 1.2em;
  text-align: center;
  color: rgb(255, 255, 255);
}

.var-container input:focus {
  border-color: #4CAF50;
  /* Green border on focus */
  outline: none;
  /* Removes the default blue/black outline */
}