
*{
    margin: 0;
    box-sizing: border-box;
}


.page-wrapper{
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.input-wrapper{
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    padding: 50px;
}
#file{
    display: none;
}
#upload-image-btn{
    border: 1px solid black ;
    padding: 20px;
    border-radius: 15px;
}
#upload-image-btn:hover{
    background-color: rgb(188, 188, 188);
}

.output-wrapper{
    width: 100%;
    display: flex;
    gap: 15px;
    padding: 0 15px;

}
.image-view{
    display: flex;
    justify-content: center;
    padding: 30px;
    width: 50%;
    max-width: 800px;
    height: 500px;
    border: 1px solid black;
    margin-bottom: 20px;
}
.text-view{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    width: 50%;
    max-width: 800px;
    height: 500px;
    border: 1px solid black;
    margin-bottom: 20px;
}
#uploaded-img{
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

.invisible{
    /* border: 1px solid black; */
    display: none;

}