/* Core styles */

html, body {
    height: 100%;
}
.page {
    min-height: 100vh; /* For when overlays are not in use, reset if they are (see below). */

    color: #444;
    fill: #444;
}
.page .page-content {
    min-height: 100vh; /* For when overlays are not in use, reset if they are (see below). */

    display: flex;
    flex-direction: column;

    overflow: hidden;
}
.page .page-content .content-image {
    max-height: 90vh; /* For when overlays are not in use, reset if they are (see below). */
    position: relative;

    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}
.page .page-content .content-image .content-image-img {
    max-width: 100%;
    min-width: 0;
    min-height: 0;

    object-fit: contain;
}
