@keyframes wobble {
  0% {
    width: 100px;
  }
  33% {
    width: 50px;
  }

  100% {
    width: 25px;
  }
}

@keyframes slide-in {
  from {
    translate: 150vw 0;
    scale: 200% 1;
  }

  to {
    translate: 0 0;
    scale: 100% 1;
  }
}

#player_image {
}

/* 
#player_image {
  animation-duration: 2s;
  animation-name: poke;
  animation-iteration-count: infinite;
  animation-direction: alternate;
} */