figure {
    display: flex;
    flex-direction: column;  /* Stack children vertically */
    align-items: center;     /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    margin: 0;      /* Remove default margin */
}

figure img {
    max-width: 100%;
    max-height: 100%;
}

figcaption {
    margin-top: 2px;  /* Add some spacing above the caption */
    text-align: center; /* Ensure the caption text is centered */
}

figcaption p {
    margin: 0px;
    font-family: Monaco, monospace; 
    font-size: 12px;
}