body {
    text-align: center;
    background-color: bisque;
}

.album {
    position: relative;
    background-color: rosybrown;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    margin: 20px;
    align-items: stretch;
    border: 5px;
    border-style: solid;
    border-radius: 10px;
}

ul {
    list-style: none;
}
.photobox {
    background-color: plum;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 0px;
    border-top: 5px;
    border-style: solid;
}

.photo {
    display: table-column;
    text-align: center;
    background-color: white;
    border: 5px;
    border-style: solid;
    border-color: black;
    margin: 10px;
    flex: 0 1 content;
    flex-wrap: nowrap;
    flex-direction: column;
}

.photo > img {
    padding: 0px;
    max-height: 500px;
}

.photo > figure > img {
    padding: 0px;
    max-height: 500px;
}
