<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main {
  background-color: #444;
  font-size: 24px;
}

.content {
  height: 100%;
}

#img1 {
  position: absolute;
  top: 0px;
  left: 0;
  text-align: right;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: inline;
}

li img {
  vertical-align: top;
}

#img1 li img {
  height: 250px;
}

@-webkit-keyframes scroller {
  from {
    top: 0;
  }
  to {
    transform: translateY(-100%);
  }
}

@keyframes scroller {
  from {
    top: 0;
  }
  to {
    transform: translateY(-100%);
  }
}

#img2 {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding-right: 10px;
  animation: scroller 600s infinite;
  animation-direction: alternate;
}

#text {
  font-family: 'EB Garamond', serif;
  color: #AAA;
  font-size: 5rem;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  overflow: scroll;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1;
}

p:before, p:after {
  content: "â€¦";
  color: #999;
}

.menu-content {
  height: 40vh;
}

@media only screen and (max-width: 630px) {
  .menu-content {
    flex-direction: column;
    height: calc(var(--vh, 1vh) * 80);
    padding: 10px 20px;
  }

  .menu-content .section {
    align-items: flex-end;
  }
}

.menu-content .section {
  z-index: 3;
  flex: auto;
}

@media only screen and (max-width: 1100px) {
  .sub-section {
    flex-direction: column;
  }

  .sub-section-content {
    flex-direction: column;
  }

  .sub-section-content:first-child {
    margin-bottom: 10px;
  }
}

.sub-section-content {
  flex: auto;
  min-width: 250px;
}

.menu-content .last {
  width: auto
}

.website-link {
  margin-top: 5px;
  text-decoration: underline;
  font-size: 0.9em;
}

@media (max-width: 500px) {
  p {
    font-size: 3rem;
    color: #CCC;
  }

  li img {
    height: 100px;
  }
  
  #img1 li img {
    height: 150px;
  }

  #text {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}
</pre></body></html>