  .imgshadow {
      animation: imgshadow 1s 1s forwards;
  }

  @keyframes imgshadow {
      0% {
          box-shadow: 0 0 0 white;
          filter: grayscale(1);
      }
      100% {
          box-shadow: 8px 4px 0 var(--pink3);
          filter: grayscale(0);
      }
  }