@font-face {
  font-family: pokefont; /* set name */
  src: url("pokefont.ttf"); /* url of the font */
}

body{font-family: pokefont;
     color: black;
     letter-spacing: 1px;
     
  background-image: url("PK_BG.png");
  background-repeat: repeat;
  background-attachment: local;
  }
  
  .partyfix{
    display: flex; /* Arranges children horizontally */
    /* Optional: add space between images */
    justify-content: space-between;
}