.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.gallery-item {
    flex: 1 1 200px;
    max-width: 300px;
    background: white;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}
.gallery-item img {
    max-width: 100%;
    height: auto;
}
.description {
    font-size: 75%;
}

.zoom-out-on-hover:active{
    transition-duration: 0.5s;
    transition: all ease-in-out 0.3s;
    transform: scale(0.25);
}

.jp-RenderedHTMLCommon > table {
    padding: 0;
    margin: 0;
    border: none;
}

.jp-RenderedHTMLCommon > table > tbody > tr > td > img {
    width: 64px;
    height: 64px;
    object-fit: contain !important;
    padding: 3px;
}