@charset "UTF-8";

body,
html {
  margin: 0;
  padding: 0;
  background-color: #e7e7e7;
  font-family: monospace;
  font-size: 1.05rem;
  width: 100%;
}

body.dark {
  background-color: #202020;
}

h1 {
  font-size: 4rem;
  border-bottom: 16px solid #202020;
  box-shadow: 0 4px 0px #20202070;
  text-shadow: 0 4px 1px #20202070;
}

.cont {
  width: 90%;
  max-width: 1220px;
  min-width: 345px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #202020;
}

.cont.dark {
}

.split {
  display: flex;
  justify-content: space-between;
  transition: height 0.25s ease;
  /* interpolate-size: allow-keywords; */
}

.split .text {
  flex-basis: 56%;
  flex: 1 1 auto;
  margin-right: 12px;
}

.split .gallery {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  transition: height 0.25s ease;
  /* interpolate-size: allow-keywords; */
}

.gallery img {
  border: solid 8px #202020ff;
}

.split img {
  max-width: 100%;
}

.split h1 {
  font-size: 1.5em;
}

.column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  /* flex-grow: 1; */
  /* flex-wrap: nowrap; */
  /* justify-content: flex-end; */
  min-height: 85px;
  margin-top: 24px;
  width: 100%;
  /* overflow-x: auto; */
  /* overflow-y: visible; */
}

.row.small {
  max-height: 225px;
}

.row.medium {
  max-height: 375px;
}

.row img:not(:first-of-type) {
  margin-left: 8px;
}

.row img {
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  transition: transform 0.25s;
  transform: translateY(0px);
  border: 8px solid #20202000;
}

img.framed {
  border: solid 8px #202020ff;
  border-radius: 8px;
}

img.selected {
  border: 8px solid #202020ff;
  transition: transform 0.25s;
  transform: translateY(-12px);
}

img.feature {
  /* width: 700px; */
}

img.full {
  width: 100%;
}

img.labeled {
}

img.rounded {
  border-radius: 999px;
}

img.semi-rounded {
  border-radius: 128px;
}

img.shadow {
  box-shadow: 0 4px 0px #20202070;
}

@media (max-width: 768px) {
  .split .text {
    order: 0;
  }

  .split {
    flex-direction: column;
  }

  h1 {
    font-size: 3rem;
  }
}
