* {
  font-family: "Press Start 2P", monospace;
  box-sizing: border-box;
}
body {
  background-image: url("https://wallpapercave.com/wp/wp2860892.jpg");
  background-size: cover; /* Adjusts the image size to cover the entire page */
  background-position: center; /* Centers the image */
  background-attachment: fixed; /* Keeps the background image fixed when scrolling */

  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  margin: 0;
  font-size: 16px;
}

button {
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #ddd;
}

#playerHealthBar,
#enemyHealthBar {
  height: 20px;
  background-color: green;
  transition: width 0.3s ease-in-out;
}

.pokemon-pixel-border {
  margin-top: 10px;
  border: 5px solid #f1c40f;
  padding: 10px;
  background-color: #2c3e50;
  box-shadow: 0 0 5px #f1c40f;
  font-family: "Press Start 2P", cursive;
  position: relative;
}

.pokemon-pixel-border::before {
  content: "POKÉMON";
  margin-top: 10px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #f1c40f;
  background-color: #2c3e50;
  padding: 2px 10px;
  border-radius: 5px;
}

.pokemon-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  font-size: 12px;
}

.pokemon-name {
  font-size: 14px;
  font-weight: normal;
}

.pokemon-stats-details {
  font-size: 12px;
}

#characterDialougueBox {
  padding: 10px;
}
