#bio img[alt=please] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0%);
  animation-name: popup;
  animation-delay: 2s;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes popup {
  0% {
    transform: translate(-50%, -50%) scale(0%);
  }
  75% {
    transform: translate(-50%, -50%) scale(120%);
  }
  100% {
    transform: translate(-50%, -50%) scale(100%);
  }
}