body {
  font-family: 'Open Sans', "HelveticaNeue-Light", "Helvetica Neue", "Helvetiva", sans-serif;
	color: #2c2c2c;
  background-color: #F5F5F5;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: auto;
  font-size: 10pt;
  letter-spacing: .5pt;
  line-height: 14pt;
}
a:link {
	color: #2c2c2c;
	font-style: normal;
	text-decoration: none;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: .5pt;
  color: #2c2c2c;
}
a:visited {
	color: #2c2c2c;
	font-style: normal;
	text-decoration: none;
	cursor: default;
}
a:hover {
	color: #2c2c2c;
	font-style: normal;
	text-decoration: underline;
	cursor: default;
}


/*HEADER*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #EDEDED;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  padding: 24px;
  color: #000000;
  z-index: 3;
  gap: auto;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.4s ease-in;
}
header.shadow {
  box-shadow: 0px 0px 6px 5px rgba(0, 0, 0, 0.15);
}
header h1 {
	font-family: 'SF Pro Rounded', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: .5pt;
  color: #2c2c2c;
	line-height: 20pt;
	margin: 6px 0 0 0;
	padding: 0;
	font-size: 18pt;
  text-align: center;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  display: inline;
}
nav .left {
  order: -1;
}
header .center {
  position: relative;
  align-self: flex-end;
  order: 0;
}
nav .right {
  order: 5;
}
.slash {
	margin: 0 8px 0 8px;
}

/*FAKEHEADER*/
.fakeheader {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background-color: #EDEDED;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  padding: 24px;
  color: #EDEDED;
  z-index: -50;
  gap: auto;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: none;
}
.fakeheader h1 {
	font-family: 'SF Pro Rounded', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: .5pt;
  color: #EDEDED;
	line-height: 20pt;
	margin: 6px 0 0 0;
	padding: 0;
	font-size: 18pt;
  text-align: center;
}
.fakeheader .center {
  position: relative;
  align-self: flex-end;
  order: 0;
}
.fakeheader .center h1 {
  margin: 0;
  padding: 0;
  text-align: center;
}


/*BLURB*/
.blurb {
  padding: 24px 24px 12px 24px;
}
.blurb h3 {
	font-family: 'SF Pro Rounded', 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  letter-spacing: .5pt;
  color: #2c2c2c;
	line-height: 16pt;
	font-size: 14pt;
  margin: 0;
  padding: 0;
}


/*GALLERY*/
.gallery {
  display: block;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-left: 24px;
  margin-right: 24px;
  aspect-ratio: 1;
  
}
.image-container-disabled {
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.4s ease-in;
}
.image-container {
  position: relative;
  aspect-ratio: 1;
  width: 20%;
  flex: 1 1 20%;
  overflow: hidden;
} 
.image-container img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.image-container:hover img {
  object-fit: contain;
  transform: scale(2);
}
.image-container video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.image-container:hover video {
  object-fit: contain;
  transform: scale(2);
}
.image-overlay {
  position: absolute;
  z-index: 6;
  bottom: 0;
  left: 3vh;
  width: 80%;
  height: auto;
  padding: 4pt;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, .8);
  border-radius: 4pt;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-container:hover {
  z-index: 4;
  overflow: visible;
}
.image-container:hover .image-overlay {
  opacity: 1;
}
.image-caption {
  color: rgb(255, 255, 255);
  font-size: 8pt;
  line-height: 12pt;
  text-align: center;
}

/*COPYRIGHT*/
.copyright {
  padding: 3vh;
}


/*RESPONSIVE*/

/*XXL*/
@media (min-width: 1900px) {
  body {
    font-size: 12pt;
  }
  header h1 {
    font-size: 24pt;
    line-height: 28pt;
  }
  .fakeheader h1 {
    font-size: 24pt;
    line-height: 28pt;
  }
}

/*MEDIUM*/
@media (max-width: 770px) {
	body::-webkit-scrollbar{
    display: none;
  }
  body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    font-size: 10pt;
  }
  header {
    position: relative;
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
    background-color: #eaeaea;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);

    gap: 8px;
  }
  .header h1 {
		font-size: 16pt;
    line-height: 18pt;
    margin: 0;
  }
  nav {
    position: relative;
    width: 100%;
  }
  nav ul {
    position: relative;
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: flex-end;
  }
  nav .slash {
    width: 8px;
  }
  a {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgb(221, 221, 221);
    border-radius: 12px;
  }
  a:hover {
    background-color: rgb(208, 208, 208);
    text-decoration: none;
  }
  a:active {
    background-color: rgb(208, 208, 208);
    text-decoration: none;
  }
  nav .left {
    order: 0;
  }
  header .center {
    align-self: center;
    order: -1;
    padding-bottom: 8px;
  }
  nav .right {
    order: 5;
  }
  .fakeheader {
    display: none;
    height: 0px;
    overflow: hidden;
  }
  .gallery {
    margin-left: 16px;
    margin-right: 16px;
  }
  .image-container {
    position: relative;
    aspect-ratio: unset;
    width: auto;
    height: auto;
    flex: 1 1 100%;
    overflow: hidden;
  }
  .image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: contain;
    transition: none;
  }
  .image-container:hover img {
    object-fit: contain;
    transform: none;
  }
  .image-container video {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: contain;
    transition: none;
  }
  .image-container:hover video {
    object-fit: contain;
    transform: none;
  }
  .image-overlay {
    left: 0;
    width: calc(100vw - 41px);
    border-radius: 0pt;
    opacity: 1;
    transition: none;
  }
  .image-container:hover {
    overflow: hidden;
  }
}


/*SMALL*/
@media (max-width: 400px) {
	body::-webkit-scrollbar{
    display: none;
  }
  body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    font-size: 8pt;
  }
  header {
    position: relative;
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
    background-color: #eaeaea;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);

    gap: 8px;
  }
  .header h1 {
		font-size: 14pt;
    line-height: 16pt;
    margin: 0;
  }
  nav {
    position: relative;
    width: 100%;
  }
  nav ul {
    position: relative;
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: flex-end;
  }
  nav .slash {
    width: 8px;
  }
  a {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgb(221, 221, 221);
    border-radius: 12px;
  }
  a:hover {
    background-color: rgb(208, 208, 208);
    text-decoration: none;
  }
  a:active {
    background-color: rgb(208, 208, 208);
    text-decoration: none;
  }
  nav .left {
    order: 0;
  }
  header .center {
    align-self: center;
    order: -1;
    padding-bottom: 8px;
  }
  nav .right {
    order: 5;
  }
  .fakeheader {
    display: none;
    height: 0px;
    overflow: hidden;
  }
  .gallery {
    margin-left: 16px;
    margin-right: 16px;
  }
  .image-container {
    position: relative;
    aspect-ratio: unset;
    width: auto;
    height: auto;
    flex: 1 1 100%;
    overflow: hidden;
  }
  .image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: contain;
    transition: none;
  }
  .image-container:hover img {
    object-fit: contain;
    transform: none;
  }
  .image-container video {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: contain;
    transition: none;
  }
  .image-container:hover video {
    object-fit: contain;
    transform: none;
  }
  .image-overlay {
    left: 0;
    width: calc(100vw - 41px);
    border-radius: 0pt;
    opacity: 1;
    transition: none;
  }
  .image-container:hover {
    overflow: hidden;
  }
}





