/********************/
/*** All Trainers ***/
/********************/

.all-trainers {
  width: 100vw;
  display: grid;
  /* flex-wrap: wrap;
    justify-content: space-between; */
  background-color: var(--pokemon-blue);
  overflow-y: scroll;
  padding: 30px;
  height: 70dvh;
  margin-top: 40px;
  margin-left: -3vw;
}

.trainer-div {
  border: solid black 4px;
  border-radius: 30px;
  width: 300px;
  height: 200px;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  margin-bottom: 20px;
  background-color: white;
}

.trainer-div img {
  height: 150px;
  width: auto;
  margin: 20px;
}

.trainer-text {
  flex-grow: 1;
}
