body {
  background-color: #191919;
}

.pokemon-container {
  position: absolute;
  top: 0;
  left: 0;
  width: min(100vw, 100vh);

  display: flex;
  justify-content: center;
  align-items: center;
}

.holder {
  filter: brightness(0) invert(1);
  width: 100%;
  aspect-ratio: 1/1;
  image-rendering: pixelated;
  object-fit: contain;
}

.win {
  width: 100%;
  aspect-ratio: 1/1;
  image-rendering: pixelated;
  object-fit: contain;
}

.holder img {
  filter: drop-shadow(-5px 5px 3px lightgrey);
}

.win img {
  filter: drop-shadow(-5px 5px 3px lightgrey);
  max-width: 400px;
  max-height: 400px;
}

.ball {
  visibility: hidden;
}

.ballVid {
  position: absolute;
  width: min(100vw, 100vh);
  top: 25%;
  left: 0;
}