@import url("https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=swap");
@font-face {
  font-family: "Arial Narrow";
  src: url("ArialNarrow.woff2") format("woff2"), url("ArialNarrow.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pantasia";
  src: url("Pantasia-Regular.woff2") format("woff2"), url("Pantasia-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.95rem;
  overflow-y: scroll;
}

#rainbow {
  pointer-events: none;
  position: absolute;
  opacity: 0.4;
}

a {
  color: #000;
  text-decoration: none;
}

.col {
  max-width: 400px;
}
.col a {
  display: block;
}

#header {
  position: fixed;
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  z-index: 99999;
}
#header h1 {
  font-family: "Pantasia";
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
#header span[act] {
  text-align: left;
  padding: 0.25rem;
  margin-right: 1rem;
}
#header span[act] label {
  display: block;
}
#header span[act] label, #header span[act] input {
  margin: 0;
  padding: 0;
}

#img {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 80%;
  left: 0;
  top: 0;
  z-index: 10;
}
#img img {
  position: absolute;
  max-width: 40vw;
}

#environment {
  height: auto;
  min-height: 500px;
  width: 100vw;
  font-family: "Pantasia";
  line-height: 140%;
  overflow: hidden;
}
#environment #sky, #environment #clouds, #environment #field {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#environment #field {
  white-space: pre;
}
#environment #sky {
  font-size: 1rem;
}
#environment .sky {
  white-space: pre-wrap;
}
#environment [cloud] {
  position: absolute;
  white-space: pre;
  font-family: "Pantasia";
  transition: opacity 1.5s linear, color 1.2s linear;
}
#environment .links a {
  position: absolute;
  text-align: center;
  transition: color 2s linear;
}
#environment .links a [cloud] {
  position: static;
}
#environment span[title] {
  font-family: "Pantasia";
  font-size: 0.75rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
#environment #field {
  font-family: "Inconsolata", monospace;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  #environment #sky {
    font-size: 0.75rem;
    line-height: 130%;
  }
  #environment span[title] {
    font-size: 0.6rem;
  }
  #environment span[flower] {
    font-size: 0.6rem;
    line-height: 100%;
  }
}
#environment #sky.index {
  height: fit-content;
  counter-reset: clouds;
  padding-top: 10vh;
  padding-bottom: 8vh;
  padding-left: 5vw;
}
#environment #sky.index [cloud] {
  opacity: 0;
}
#environment #sky.index #sky {
  background: blue;
}
#environment #sky.index .links {
  position: static;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#environment #sky.index a {
  position: static;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  vertical-align: middle;
  width: 300px;
  padding: 1rem;
}
#environment #sky.index a [cloud] {
  font-size: 0.8rem;
  line-height: 120%;
  display: inline-block;
  opacity: 1;
  white-space: pre;
  width: 140px;
}
#environment #sky.index a [title] {
  display: inline-block;
  width: 100px;
  text-align: left;
  text-overflow: ellipsis;
  font-family: "Pantasia";
  text-indent: 0;
}
#environment #sky.index a::after {
  counter-increment: clouds;
  content: "[" counter(clouds) "]";
  width: 30px;
  font-size: 0.5rem;
  display: block;
  padding-right: 0.5rem;
  text-align: right;
}
#environment #sky.index span[title]::before {
  display: none;
}
#environment #sky.index span[title]::after {
  display: none;
}

#img-overlay {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
#img-overlay img {
  max-width: 70vw;
  object-fit: contain;
}

#info {
  position: absolute;
  padding: 1rem;
  width: 100%;
  left: 0;
  top: 450px;
  font-size: 0.7rem;
  letter-spacing: -0.25px;
  white-space: normal;
  font-family: "Pantasia";
  text-align: center;
  padding-bottom: 10vh;
}
#info p {
  max-width: 520px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}

#list {
  position: fixed;
  width: calc(100% - 2rem);
  bottom: 0;
  left: 0;
  font-family: "Pantasia";
  padding: 1rem;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  z-index: 999;
}
#list a:not(:last-of-type)::after {
  content: ",";
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 100;
  font-size: 0.8rem;
}
#footer .links {
  display: flex;
  justify-content: space-between;
  font-family: "Pantasia";
}
#footer a {
  cursor: pointer;
  text-transform: uppercase;
}
#footer a:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-thickness: 0.5px;
}

#caption {
  position: fixed;
  width: 100%;
  bottom: 2rem;
  left: 0;
  font-family: "Arial Narrow";
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  z-index: 100;
  pointer-events: none;
}
#caption span {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(2px);
}
#caption span::before {
  content: "( ";
}
#caption span::after {
  content: " )";
}

main {
  width: 100vw;
  font-family: "Pantasia";
  text-align: center;
  padding-bottom: 50px;
}
main p {
  width: 520px;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0;
  line-height: 140%;
}

#bottom {
  min-height: 200px;
}
#bottom .environment {
  white-space: pre;
}

.block {
  display: flex;
}
.block h3 {
  font-weight: normal;
  margin: 0;
  font-size: inherit;
}
.block a {
  width: 100%;
  display: block;
}

.block-index {
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  text-align: left;
  flex-direction: row;
}
.block-index .-block {
  margin: 0 0.75rem;
}
.block-index h3 {
  margin-right: 1rem;
}

/*# sourceMappingURL=s.css.map */
