/* GENERAL STYLING */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-size: 14px;
    overscroll-behavior: none;
    padding: 5px; 
}

body {
	overflow-y: auto;
    overflow-x: hidden;
}


h1, h2, h3, h4, p, a, span {
    color: black;
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding: 0;
    font-family: nimbus-sans, sans-serif;
    letter-spacing: -0.2px;
    font-weight: normal;
    font-size: 1em;
    padding-bottom: 5px; 
}

h1 {
font-size: 3em;
padding-top: 7px;
padding-bottom: 0px; 
line-height: 90%;
letter-spacing: -1px;

}

details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}

/* SUMMARY */

.heroimage_container {
	width: 100%;
    height: fit-content;
}

.heroimage {
	width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.imagegallery_wrapper {
	height: 30vh;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    overscroll-behavior: none;
}

.imagegallery_container {
	width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	gap: 5px;
    overflow-y: hidden;
    overflow-x: auto;
}

.galleryimage_container {
    height: 100%;
    width: auto;
    flex-shrink: 0;
}

.galleryimage {
    height: 100%;
    width: auto;
    object-fit: contain;
}

