html {
  height: 100%;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    180deg,
    rgba(2, 0, 36, 1) 7%,
    rgba(9, 9, 121, 1) 38%,
    rgba(124, 0, 255, 1) 86%
  );
  background-repeat: no-repeat;
}

#headlineImgContainer {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  margin-bottom: 20px;
}

#highscores {
  font-size: small;
  float: left;
  color: #32bd45;
  padding: 10px 15px;
  border-radius: 20px;
}

#highscoreMonsterKills {
  display: inline-block;
  padding-right: 15px;
}

#currentScores {
  font-size: small;
  float: right;
  color: #32bd45;
  padding: 5px 15px;
  border-radius: 20px;
}

#currentMonsterKills {
  padding-right: 15px;
}

#text {
  background-color: #202020;
  color: #21a41a;
  padding: 10px;
  min-height: 200px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

#chestImages {
  display: none;
  gap: 50px;
  background-color: #202020;
  padding-left: 10px;
}

#game {
  max-width: 750px;
  min-height: 300px;
  max-height: 600px;
  background-color: #313131;
  color: #21a41a;
  margin: 0 auto;
  padding: 10px;
  border-radius: 6px;
}

#controls,
#stats {
  color: #21a41a;
}

#controls {
  padding: 20px 5px 15px;
}

#buttonInventory {
  float: right;
}

#buttonShopPrices {
  float: right;
  margin-right: 5px;
}

#stats {
  border-radius: 20px;
  border: 2px solid #7f7d7d93;
  padding: 10px 15px 10px;
  background-color: #212121;
}

#stats span {
  font-size: 1.1rem;
}

#monsterStats {
  display: none;
  padding: 10px 5px;
  color: #fff;
  background-color: #9c0c0c;
}

#monsterName {
  padding: 2px 15px;
  background-color: #21a41a;
  border-radius: 15px;
}

#monsterLifebarContainer {
  border: 1px solid #ccc;
  width: 150px;
  display: inline-block;
  vertical-align: text-bottom;
}

#monsterLifebar {
  height: 15px;
  width: 100%;
  color: #000 !important;
  background-color: #007614 !important;
}

#asciiText {
  display: none;
  background-color: #202020;
  color: #21a41a;
  padding: 10px 0px 10px 120px;
}

.stat {
  padding-right: 10px;
}

button {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background-color: #1e7629;
  background-image: linear-gradient(#33b845, #1e7629);
  border: 3px solid #1e7629;
  padding: 4px 6px 4px;
  border-radius: 4px;
}

#imageContainerFooter {
  display: inline-flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
