#canvas {
   display: none;
}

#outImageWrapper {
    position: relative;
    width: calc(100% - 60px);
    aspect-ratio: 1/1;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Ensure the image is clipped to the size of the div */
    cursor: pointer;    
    display: flex;
    justify-content: center;
    align-items: center;
}

#outImage {
    position: absolute;
}
 
#outImage img { 
    object-fit: contain;
}
