<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: linen;
}

.ourstory {
  width: 100%;
}

.textbox {
  font-size: clamp(10pt, 4vw, 16pt);
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
  font-family: Raleway;
}

figcaption {
  font-style: italic;
  text-align: center;
}

.imgcontainer {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.imgcontainer1 figure {
  width: 45%;
  max-width: 40vw;
  margin: 10px;
}
.imgcontainer1 img {
  width: 100%;
  object-fit: contain;
  max-height: 40vh;
}

.imgcontainer3 figure {
  max-width: 90vw;
}
.imgcontainer3 img {
  width: 100%;
  margin: 10px;
  object-fit: contain;
  height: auto;
  max-height: 40vh;
}

.floatimg-left,
.floatimg-right {
  width: 33%;
  position: relative;
}
.floatimg-left img,
.floatimg-right img {
  width: 100%;
  object-fit: contain;
}
.floatimg-left {
  float: left;
  margin-right: 1em;
}
.floatimg-right {
  float: right;
  margin-left: 1em;
}

.imgcontainer2 {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.imgcontainer2-col {
  display: flex;
  flex-direction: column;
}
.imgcontainer2 figure {
  width: clamp(20vw, 100vw, 30vh);
  margin: 5px;
}
.imgcontainer2 img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-aspect-ratio: 9/15), (max-width: 768px) {
  .imgcontainer,
  .floatimg-left,
  .floatimg-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    float: none;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }

  .imgcontainer figure,
  .floatimg-left figure,
  .floatimg-right figure {
    width: 90%;
    height: auto;
    max-width: 90%;
    margin: 10px;
  }

  .imgcontainer img,
  .floatimg-left img,
  .floatimg-right img {
    max-height: 40vh;
  }
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: 5vh 5vw;
  display: block;
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
</pre></body></html>