.zo2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    
  }
  
  .frame2 {
    background: linear-gradient(135deg, #ffffff, #ffffff, #ffffff);
    border-radius: 5px;
    padding: 5px;
    width: 1400px; /* Bigger size */
    height: 900px; /* Bigger height */
    box-shadow: 0 5px 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;
  }
  
  .frame2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  .inner-frame2 {
    border: 5px solid #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  
  .inner-frame2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the frame without distortion */
    cursor: pointer;
  }
  