/* .img-horizontal {
    max-height: 400px;
}

.img-vertical {
    max-height: 400px;
} */

.img {
    max-height: 600px;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    min-width: 200px;
    background: #f0f0f0;
}

@media only screen and (width <= 1200px) {
    .img {
        max-height: unset;
        max-width: 100%;
    }
}

.photoLink {
    margin: 6px;
    max-height: 600px;
    width: auto;
    object-fit: contain;
    min-width: 200px;
}

@media only screen and (width <= 1200px) {
    .photoLink {
        margin-bottom: 8px;
        margin-left: 8px;
        margin-right: 8px;
        max-height: unset;
    }
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.photoColumn {
    display: flex;
    flex-direction: column;
    align-items: center;

    max-width: 1200px;
}

.photoRow {
    display: flex;
    flex-direction: row;
    max-width: 100%;
}

@media only screen and (width <= 1200px) {
    .photoRow {
        flex-direction: column;
    }
}

.title {
    font-family: 'DMSerif';
    font-size: 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 50px;
}