@charset "UTF-8";
/* CSS Document */

#image-viewer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
 
#image-viewer img {
    width: 200px;
    height: auto;
    margin: 10px;
}
@media (max-width: 768px) {
    #image-viewer img {
        width: 100%;
    }
}