body {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5%;
}

.pokebox {
  display: flex;
  width: 80%;
  height: max-content;
  margin-top: 5%;
  padding: 20px;
}

h1, h2 {
  color: white;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 480px) {
  .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.headers {
  display: flex;
  flex-direction: column;
  padding: 0px;
}

h2, h4 {
  margin: 0px;
}

img {
  width: 200px;
  height: 200px;

}