.post-page-imgs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

.post-zoomed-img {
    position: fixed;
    top: 200px;
}

#img-viewer {
    display: none;              
    position: fixed;
    z-index: 10;               
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: white;
}

#img-viewer img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

#close-img {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    padding: 1px 10px;
    background-color: orange;
    border-radius: 10px;
}