
  body {
    font-family: "Outfit";
    background-color: #050037;
    margin: 1.25%;
    font-size: max(17px, 3.5vmin);
  }
  
  p {
    color: white;
  }
  
  .split-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    column-gap: 10px;
    margin: 2vmin;
    font-size: 2.5em;
    /*background: purple;*/
  }
  
  .split-title .h1 {
    font-family: "Freckle Face";
    font-weight: bold;
    color: white;
    font-size: 1em;
  }
  
  .split-title .role {
    font-family: "Outfit";
    color: #E21037;
    font-weight: normal;
    font-size: 0.6em;
  }
  
  a {
    font-family: "Outfit";
    color: #FFBB00;
    font-weight: normal;
    text-decoration: underline 0.075ex;
    text-transform: uppercase;
  }
  
  a:hover {
    font-weight: bold;
  }
  
  div.links {
    margin: 2vh;
    font-size: 1.2em;
  }
  
  a.link {
    display: inline;
  }
  
  .split-body {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1em;
    margin: 2vh;
    /*background: purple;*/
  }
  
  .gallery {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    width: min(95vmin, 100%);
    object-fit: cover;
    gap: 0.4em;
  }
  
  #full-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 0.5em;
    image-rendering: pixelated;
  }
  
  .previews {
    display: flex;
    height: 18vmin;
    min-height: 2lh;
    flex-wrap: nowrap;
    flex-direction: row;
    column-gap: 0.4em;
    margin: 0;
    background-color: transparent;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-color: #E21037 transparent;
  }
  
  #thumb {
    flex-shrink: 0;
    object-fit: cover;
    height: 90%;
    border-radius: 0.5em;
    overflow: hidden;
    image-rendering: pixelated;
  }
  
  #thumb:hover {
    outline: solid 0.3em #E21037;
    outline-offset: -0.3em;
  }
  
  #thumb:active {
    outline-color: white;
  }
  
  .split-body p {
    margin: 0.6em;
    max-height: 70vh;
    min-width: 0;
    overflow: visible;
    flex: 1;
    background: transparent;
  }
  
  @media (max-aspect-ratio: 8 / 5) {
  .split-body p {
    max-height: none;
    max-width: none;
    min-width: 100%;
  }
}
  
  
  