@import url('main.css');

.image-gallery {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: end;
}

.image-gallery > img {
    width: 100px;
    height: 100px;
    padding: 0px;
    margin: 20px;

    border-width: 10px;
    border-color: aqua;
    border-style: solid;
}