.zo {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    overflow: hidden;
  }
  
  .frame {
    background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff);
    border-radius: 5px;
    padding: 2px;
    width: 600px; /* Bigger size */
    height: 800px; /* Bigger height */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .frame:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  .inner-frame {
    border: 5px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  
  .inner-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the frame without distortion */
    cursor: pointer;
  }

  .text{
    
  }