#page {
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    align-items: center;
}


#options-box {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

.flex-row {
    display: flex; 
    flex-direction: row; 
    gap: 10px; 
    align-items: center;
}


#imgs-box {
    display: flex; 
    flex-direction: row; 
    gap: 10px; 
    /*height: 520px; 
    width: 830px; */
    flex-wrap: wrap; 
}

.img-box {
    display: flex; 
    flex-direction: column; 
    max-height: 460px; 
    max-width: 400px; 
    background-color: aliceblue;
    padding: 50px; 
    margin: 20px; 
    align-items: center;
    border-radius: 20px; 
    box-shadow: 3px 3px 10px 5px rgba(50, 52, 53, 0.286);
}

.img-box h4 {
    width: 100%; 
    height: 60px; 
    margin: 0;
    padding: 0; 
    text-align: center;
}

#img-out-box {
    display: none; 
}

.image {
    display: none; 
    max-width: 300px;
    max-height: 300px;
    background-color: black;
    padding: 0; 
}



/*.vertex {
    position: relative; 
    font-size: 100px;
    background-color: aliceblue;
    height: 20px; 
    width: 20px; 
    border-radius: 50%; 
    border-color: rgb(178, 184, 189); 
    border-width: 1px; 
    border-style: solid; 
    cursor: pointer; 
}*/


#img-in-box {
    position: relative; 
}

#img-out-box {
    position: relative; 
}

#in-canvas {
    width: 400px; 
    height: 550px; 
    background-color: transparent;
    padding: 0; 
    position: absolute; 
    top: -50px; 
    bottom: 0px; 
    touch-action: pinch-zoom; 
}

#out-svg {
    width: 400px; 
    height: 550px; 
    background-color: transparent;
    padding: 0; 
    position: absolute; 
    top: -50px; 
    bottom: 0px; 
}


#download-box {
    display: flex; 
    flex-direction: column; 
    align-items: center;
}

#download-img-box {
    display: none; 
}

#download-img {
    margin-bottom: 20px; 
}

footer {
    display: flex; 
    flex-direction: column; 
    align-items: center;
    gap: 0; 
}

footer h2 {
    margin-top: 50px; 
    margin-bottom: 0; 
}

footer p {
    text-align: center;
}