

header {
  position: fixed;     
  width: 100%;
  justify-content: space-between;
  z-index: 999;
 }
 
 header:hover nav {
 
  opacity: 1;
  visibility: visible;
  width: fit-content;
  max-width: 25vw;
  transition: all 300ms ease;
   }
 
 header:hover .logo {
  opacity: 1;
  visibility: visible;
  width: fit-content;
  max-width: 15rem;
  transition: all 600ms ease;
   }
 
 
  header .tags {
   font-size: var(--font-size);
   text-transform: lowercase;
   letter-spacing: 0;
   z-index: 1;
   width: auto;
   height: fit-content;
   margin: var(--space-xl);
   position: relative;
   right: 0;
 
 }
 
 header .tags p {
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   text-align: right;
 }
 
 header:hover .tags {
  opacity: 0;
  transition: opacity .3s ease-out;
  }
 
  .header .logo {
   opacity: 0;
   white-space: nowrap;
   visibility: visible;
   overflow: hidden;
   max-width: 0;
   transition: all 300ms ease;
   }
 
  .proj-name {
   display: flex;
   text-wrap: nowrap;
   width: fit-content;
   max-width: 25rem;
   overflow: hidden;
   opacity: 1;
   transition: all 300ms ease;
 
   }
 
  .header:hover .proj-name {
   max-width: 0;
   opacity: 0;
   transition: all 900ms ease;
   }
  nav:hover .proj-name {
 display: none;
     }
    .header:hover .proj-name::before {
   content: " / ";
   white-space: pre;
   }
 
   body {
  background-color: var(--warmwhite);
  position: absolute;
}


.notes {
  width: 100vw;
  margin: auto;
  margin-top: .5rem;
  display: inline-grid;
  padding: .25rem;
}

.note {
  width: 25vw;
  height: fit-content;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
  opacity: 1; 
  float: left;
  border-radius: 2px;
  -webkit-column-break-inside: avoid;
-webkit-box-sizing: border-box;
box-sizing: border-box;
break-inside: avoid;
page-break-inside: avoid;
}

.note-header {
-moz-transition: opacity 250ms;
-o-transition: opacity 250ms;
-webkit-transition: opacity 250ms;
transition: opacity 250ms;
display: block ruby;

}


.note a {
  display: block;
  padding: var(--space-xl) 0;
  line-height: 1.25em;
  filter: grayscale(100%);
}
.note a:hover {
  filter: none;
}
.note h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: var(--font-size);
  text-align: center;
  padding-bottom: var(--space-xl);
}
.note p {
  font-size: var(--font-size);
  font-family: 'Times New Roman', Times, serif;
  height: fit-content;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.note time {
  font-size: var(--font-size-s);
  display: block;
  text-align: center;
  padding-top: var(--space-xl);
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #ff1919;
}

.note figure {
  max-width: 25vw;
  height: auto;
}
.note img {
  max-width: 100%;
  padding-bottom: var(--space-xl);
}
.highlight {
  margin-left: var(--space-s);
  color: var(--grey);
  border-bottom: dotted 1px;
  text-align: center;
  transition: all 300ms ease;
}
.note:hover .highlight {
  color: var(--antracite);
  border-bottom: solid 1px;
  text-align: center;
  transition: all 300ms ease;
}

@media screen and (min-width: 45rem) {
  .gallery { margin-left: -3rem; margin-right: -3rem;}

}

