body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  position: relative;
  height: 100vh;
  background-color: #eee;
}

.pokemon-image {
  width: 150px;
  display: block;
  margin: 0 auto;
}

#player-container {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 100px;
  margin-left: 20px;
  border-radius: 10px;
}

#opponent-container {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  background-color: #fff;
  padding: 10px;
  margin-top: 20px;
  margin-right: 20px;
  border-radius: 10px;
}

#narration-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
  }

.damage-animation {
  animation: flashRed 0.5s;
}

@keyframes flashRed {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: red;
  }
}
