/* Credit to CyberPrimmie ^w^#3192 from Discord */

body {
  /* background-color: black; just to show you can change the wider page bg without changing the vintage look of the lookup */
  font-family: Arial, Helvetica, sans-serif;
}
#lookup {
  text-align: center;
  /* background-color: white; */
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
}
.pet_color {
  color: red; /* change to the pet's color */
}
#petflex {
  display: flex;
  align-items: center;
  justify-content: center;
}
#petimg {
  margin-right: 2%;
}
.pettxt {
  margin-top: -1%;
  font-size: 12px;
  letter-spacing: 0.03em;
}
#petstat {
  text-align: center;
  background-color: gainsboro;
  padding: 8px 8px 0px 8px;
}
.gen_color {
  color: blue; /* lightpink for female, probably lightblue for males; i don't have a reference screenie */
}
.hp {
  color: darkgreen;
  font-weight: 700;
}
#spacer {
  height: 25px;
}

@media only screen and (max-width: 800px) {
  #lookup {
    width: 75%;
  }
}

@media only screen and (max-width: 600px) {
  #lookup {
    width: 90%;
  }
}
