.image-thumbnails {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .image-thumbnail {
    width: 30%;
    cursor: pointer;
    transition: transform 0.3s;
    justify-content: center;
  }
  
  .image-thumbnail:hover {
    transform: scale(1.2);
  }
  
  .image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 100000000;
  }
  
  .image-modal img {
    width: 60%;
    height: auto;
    border: 2px solid white;
    border-radius: 5px;
  }