header{
    font-size: medium;
    font-family: system-ui;
    background-color: rgb(255, 255, 255);
    height: fit-content;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    opacity: .9;
}

/* link formatting */
header a:link, header a:visited {
    text-decoration: none;
    color: rgb(26, 26, 26);
  }
header a:hover, header a:active {
    color: rgb(34, 34, 34);
    text-decoration: underline;
  }


.contents {
    text-align: left;
    margin: 0px;
    padding-left: 20px;
    display: flex; /* Flexbox for horizontal layout */
    gap: 40px; /* Space between list items */
    list-style-type: none; /* Removes bullet points */
}

body {
    padding: 0%;
    margin: 0px;
}

.description {
    margin-top: 10px;
    text-align: left;
}

p {
    font-size: medium;
    font-family: system-ui;
    padding: 0px;
    margin: 0px;
}

.content {
    margin: 20px;
}

.smallprint{
    font-size: small;
    font-family: system-ui;
    font-style: italic;
    font-weight: normal;
    color: dimgray;
    text-align: right;
    padding: 8px;
}

/* Photo settings */
.box {
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.item, .item a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.item img, .item a img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* horizontal scrolling gallery */
/* .body-container{
    display: flex;
    flex-direction: column;
} */
  
.scrolling-gallery{
    /* width: auto; */
    display: flex;
    overflow-y: scroll;
    overflow-x: scroll;
    overscroll-behavior: contain;
    gap: 10px;
    height: 50svh;
}

.scrolling-gallery::-webkit-scrollbar {
    display: none;
}

.image-container {
    display: flex;
    flex-direction: column;
    height:100%;
}

.image-container img{
    height:100%;
}
  