body {
    --photo-spacing: 20px;
    --max-photo-height: 700px;
}

#content {
    align-items: center;
}

#photo_container {
    position: relative;
    height: 100%;
}

#top_photo_spacer {
    position: relative;
    width: 100%;
    height: var(--photo-spacing);
    min-height: var(--photo-spacing);
}

#empty_exhibition {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: calc(100vh - var(--top-bar-height));
    text-align: center;
}

.photo_row {
    display: none;
    width: calc(100% - 2 * var(--photo-spacing));
    max-height: var(--max-photo-height);
    margin: 0 var(--photo-spacing) var(--photo-spacing) var(--photo-spacing);
    justify-content: center;
}

.photo_element {

}

.photo {
    position: relative;
    width: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    transition: var(--animation-time-hover) transform;
}

.photo:hover {
    transform: scale(102%);
    cursor: pointer;
}

.photo_spacer {
    display: flex;
}

.photo_text {
    font-size: 2.25vh !important;
    line-height: normal !important;
    user-select: none;
}