  /*------------ font */
  @import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap');
  
  /*------------ root, bg, box */
  :root {
  background-color: #ddd2bd;
  --brown: #7A5952;
  --pink: #D16175;
  --white: #F2F2F2;
  --nolink: #6478B3;
  --font: "Helvetica Nueue", Arial, sans-serif;
  --cursor: url('https://cdn.cursors-4u.net/previews/cute-polka-dotted-blue-bow-tie-ribbon-9a7c52d4-32.webp') 32 32, auto !important;
  }
  
  body {
  cursor: url('https://cdn.cursors-4u.net/previews/cute-polka-dotted-blue-bow-tie-ribbon-9a7c52d4-32.webp') 32 32, auto !important;`
  max-height: max-content;
  }  
  
  /*------------ scrollbar */
  ::-webkit-scrollbar {
  width: 5px;
  border-radius: 7px;
  }
  
  ::-webkit-scrollbar-track {
  background: #DDD2BE; 
  }
   
  ::-webkit-scrollbar-thumb {
  background: #C7B594; 
  }
  
  ::-webkit-scrollbar-thumb:hover {
  background: #7A5952; 
  }
  
  /*------------ parent */
  .parent {
  background: transparent;
  font-size: 0;
  line-height: 0px;
  padding: 0;
  margin: 0;
  }
  
    /*------------ navi bar */
    ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 4px;
    line-height: 0;
    overflow: auto; 
    cursor: var(--cursor);
    z-index: 9999;
    }
    
      li {
      float: left;
      }
  
      /*----------- link buttons */
      li a {
      display: block;
      background-image: linear-gradient(to bottom, #f2f2f2 1px, #C4C5DA 3px, #8798CC 51px, #C4C5DA 14px);
      font-family: "Helvetica", sans-serif;
      color: var(--brown);
      width: auto;
      border: #7688C0 1px solid;
      border-radius: 5px;
      font-size: 11px;
      text-decoration: none;
      letter-spacing: -0.1px;
      font-weight: 900;
      padding: 5px;
      line-height: 8px;
      cursor: var(--cursor);
      }
    
        li a:hover {
        background-image: linear-gradient(to bottom, #E6DDDB 1px, #A1ADD9 2px, #7688C0 38px, #A1ADD9 19px);
        }
        
  /*------------ iframe */
  .iframe {
  max-width: 100;
  box-sizing: border-box;
  }
  
  /*------------ text styles */
  heading {
  margin: 0;
  font-family: "Times New Roman", serif;
  padding: 0px;
  font-style: italic;
  font-weight: bold;
  line-height:18px;
  font-size: 19px;
  color: var(--brown);
  letter-spacing: -0.4px;
  }
  
 .title {
  box-sizing: border-box;
  font-style: italic;
  font-weight: 700;
  font-size: 11px;
  padding: 8px;
  line-height: 9px;
  border-top: #7A5952 1px solid;
  border-bottom: #7A5952 1px solid;
  }
  
  side {
    font-family: "Times", serif;
    font-style: italic;
    color: #7A5952;
    font-weight: bold;
    font-size: 14px;
    padding: 0;
    margin-top: 6px;
    letter-spacing: -0.1px;
    line-height: 6px;
    text-align: left;
    }  
  
  .nolinks {
  display: block;
  background-image: linear-gradient(to bottom, #f2f2f2 1px, #C4C5DA 3px, #8798CC 51px, #C4C5DA 14px);
  font-family: "Helvetica", sans-serif;
  color: var(--nolink);
  width: auto;
  border: #7688C0 1px solid;
  border-radius: 5px;
  font-size: 11px;
  text-decoration: none;
  letter-spacing: -0.1px;
  font-weight: bold;
  padding: 5px;
  line-height: 8px;
  }
  
  p {
  margin: 0;
  font-family: var(--font);
  padding: 5px;
  margin-right: 5px;
  font-size: 11px;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: -0.1px;
  }
  
    p a {
    color: #D16175;
    font-weight: bold;
    text-decoration: underline #D16175 wavy;
    }
    
    p a:hover {
    color: #D899AB;
    text-decoration: underline #D899AB wavy;
    }
    
    a:hover {
    color: #6478B3;
    text-decoration: underline #9E9BC4 wavy;
    }
  
  .pagelink {
  margin: 0;
  font-family: var(--font);
  font-size: 11px;
  color: #7A5952;
  text-decoration:none;
  font-weight: 600;
  cursor: var(--cursor);
  }
  
  .brownlink {
  margin: 0;
  font-family: "Anonymous-Pro", monospace;
  font-size: 11px;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: -0.4px;
  font-weight: 700;
  cursor: var(--cursor);
  }
  
    /*------------ grid pt. 2 */
    .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
    "grida gridb"
    "grida gridb"
    "grida gridb"
    "grida gridb"
    "grida gridb"
    }
    
    .container > div {
    padding: 0px;
    }
  
    .grida {
    grid-area: grida;
    margin-right: 6px;
    }
    
    .gridb {
    grid-area: gridb;
    }
  
  /*------------ page button */
  
  .pagebutton {
  margin-bottom: 0;
  background-image: linear-gradient(to bottom, #f2f2f2 1px, #C7B594 3px);
  width: max-content;
  height: auto;
  padding: 3px 4px;
  border: 1px solid #f2f2f2;
  box-shadow: 1px 1px 2px #545454;
  }
  
  .pagebutton:hover {
  background: #BFB6D2;
  }

  
      /*------------ filter button */
      button {
      background-image: linear-gradient(to bottom, #E6DDDB 1px, #DCB5C6 3px, #D899AB 51px, #DCB5C6 3px);
      font-family: "Helvetica", sans-serif;
      color: var(--brown);
      width: max-content;
      gap: 2px;
      border: #D57D90 1px solid;
      margin-left: 1px;
      margin-bottom: 2px;
      border-radius: 6px;
      font-size: 11px;
      text-decoration: none;
      font-weight: 700;
      padding: 4px;
      line-height: 10px;
      cursor: var(--cursor);      
      }
      
      button:hover {
      background-image: linear-gradient(to bottom, #f2f2f2 1px, #D57D90 3px, #D899AB 51px, #D57D90 14px);
      color: #CD516A;
      transform: scale(1.05);
      transition: transform 0.2s ease-in-out;
      }  
  
  /*------------ columns & rows... FAHHHHH */
  
 .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  }

  .column {
  width: calc(20% - 8px);
  aspect-ratio: 3 / 4;
  align-items: stretch;
  overflow: hidden;
  box-sizing: border-box;
  border: #8A6A5B 1px solid;
  border-radius: 7px;
  }
    
    /*----------- column specs */
  
    .column a {
      display: block;
      width: 100%;
      height: 100%;
      }

    .column img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.2s ease-in-out;
      }

    .column img:hover {
      transform: scale(1.03);
      }
    
  .gallery-era {
  margin-bottom: 24px; 
  }