#instant-splash {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  
  #instant-splash img {
    width: 110px;
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(.22,.61,.36,1),
      filter 0.7s ease;
  }
  