div#page {
    position: absolute;
    width: min(90vw, 500px);
    left: 50%;
    transform: translateX(-50%);
}

p {
    text-indent: 30px;
}
.heading-image {
    width: 100%;
    max-height: min(50vh, 200px);
    object-fit: contain;
}

#header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.header-logo {
    font-size: 34px;
    letter-spacing: -8px;
    font-family: arial;
}

.footer-logo {
    font-size: 10px;
}

#footer a, #header a {
    color: #333;
    text-decoration: none;
    margin: 4px 0;
}
#footer a:hover, #header a:hover {
    text-decoration: underline;
}

#header .header-links a {
    font-size: 19px;
    margin-left: 5px;
}

body {
    font-family: sans-serif;
}


#footer {
    color: gray;
    width: 100%;
    display: flex;
    min-height: 100px;
}

.header-links {
    border-left: 1px solid gray;
    margin-left: 21px;
    padding-left: 10px;
}

.footer-link-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #eee;
    padding: 12px;
}

.footer-link-column.column-double-width {
    width: 200%;
}

#page-content {
    min-height: 600px;
    padding-bottom: 18px;
    box-sizing: border-box;
}

.image-scroller {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.image-scroller-tabs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    aspect-ratio: 16 / 9;
    overflow-x: hidden;
}

.image-scroller-tab {
    aspect-ratio: 16 / 9;
    position: relative;
    left: calc(0px - var(--offsetLeft));
    transition: left 0.25s ease-in-out;
}

.image-scroller-image {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-image: linear-gradient(to top, #000d, transparent 75%), var(--image);
    background-position: center;
}

.image-scroller-details {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 22px;
}

.image-scroller-description {
    color: #ccc;
}

.image-scroller-title {
    color: white;
    font-size: 30px;
    font-family: serif;
    font-style: italic;
}







.image-scroller-buttons {
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}

.image-scroller-button-left, .image-scroller-button-right {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: black;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid green;
    cursor: pointer;
    user-select: none;
    pointer-events: all;
}

.image-scroller-button-right {
    right: 10px;
    left: unset;
}


