.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
  }

  .info-box {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: none;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
  }

  .info-box img {
    width: 100px;
    height: 100px;
  }