@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&family=Playfair+Display:wght@600&family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 4px;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(black)), url(../noise.svg);
  background: linear-gradient(black, black), url(../noise.svg);
  background-blend-mode: none;
  height: 100vh;
  position: relative;
}

body.lightBg {
  background: -webkit-gradient(linear, left top, left bottom, from(#323232), to(#323232)), url(../noise.svg);
  background: linear-gradient(#323232, #323232), url(../noise.svg);
}

body.onLoad::after {
  opacity: 0;
  -webkit-transform: translateY(-1vmin);
          transform: translateY(-1vmin);
}

body::after {
  content: "Leeward";
  font-family: "Playfair Display", serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  font-size: 10vmin;
  opacity: 1;
  -webkit-transform: translateY(0vmin);
          transform: translateY(0vmin);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
  transition: opacity .3s ease-out, -webkit-transform .3s ease-out;
  transition: opacity .3s ease-out, transform .3s ease-out;
  transition: opacity .3s ease-out, transform .3s ease-out, -webkit-transform .3s ease-out;
  z-index: -1;
}

main {
  position: relative;
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  -webkit-transition: -webkit-clip-path 0.5s ease-out 0.5s;
  transition: -webkit-clip-path 0.5s ease-out 0.5s;
  transition: clip-path 0.5s ease-out 0.5s;
  transition: clip-path 0.5s ease-out 0.5s, -webkit-clip-path 0.5s ease-out 0.5s;
}

main.onLoad {
  -webkit-clip-path: circle(100% at 50% 50%);
          clip-path: circle(100% at 50% 50%);
}

main.lightBg .info, main.lightBg .export {
  background-color: rgba(255, 255, 255, 0.5);
  color: #323232;
}

main.lightBg .info button::after, main.lightBg .export button::after {
  background: white;
  color: #323232;
}

main.lightBg .info input, main.lightBg .info select, main.lightBg .info button, main.lightBg .export input, main.lightBg .export select, main.lightBg .export button {
  background-color: #323232;
  color: white;
}

main .export form {
  width: 100%;
  max-width: 500px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  font-size: calc(1.5vmin);
}

main .export form .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .export form .group input {
  margin-left: 10px;
}

main .export form #outlineOption {
  width: 100%;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

main .export form label {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  color: currentColor;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

main .export form label.subInfo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  font-style: italic;
  font-weight: normal;
  opacity: 0.8;
  margin-bottom: 1rem;
}

main .export form input, main .export form select, main .export form button {
  margin-left: auto;
  width: 100%;
  max-width: 150px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  background-color: white;
  border: none;
  padding: 5px 10px;
  font-family: 'Poppins', sans-serif;
  color: #323232;
  border-radius: 5px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

main .export form button {
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  max-width: 200px;
  width: auto;
  padding: .5rem 1rem;
  font-weight: bold;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

main .export form button.exporting::after {
  -webkit-animation: exporting 1s ease-out infinite;
          animation: exporting 1s ease-out infinite;
}

main .export form button::after {
  content: "Export";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  padding: .5rem 1rem;
  background: #323232;
  color: white;
  border-radius: 5px;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

@-webkit-keyframes exporting {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  99% {
    -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
}

@keyframes exporting {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  99% {
    -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
            clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
}

main .export form button:hover {
  -webkit-transform: translateY(-0.2vmin);
          transform: translateY(-0.2vmin);
}

main .info, main .export {
  position: absolute;
  top: 34px;
  left: 34px;
  right: 34px;
  bottom: 34px;
  background-color: rgba(50, 50, 50, 0.5);
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
  -webkit-transition: -webkit-clip-path .3s ease-out;
  transition: -webkit-clip-path .3s ease-out;
  transition: clip-path .3s ease-out;
  transition: clip-path .3s ease-out, -webkit-clip-path .3s ease-out;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main .info.visible, main .export.visible {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

main .info.visible > *, main .export.visible > * {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

main .info > *, main .export > * {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.3s ease-out, -webkit-transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease-out;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease-out, -webkit-transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-transform: translateY(10vmin);
          transform: translateY(10vmin);
  opacity: 0;
}

main .info h1, main .export h1 {
  font-family: 'Playfair Display', serif;
  font-size: calc(7vmin);
}

main .info h5, main .export h5 {
  font-family: 'Poppins',sans-serif;
  margin-bottom: 4vmin;
  font-size: calc(2vmin);
}

main .info h5 a, main .export h5 a {
  color: currentColor;
}

main .info p, main .export p {
  color: currentColor;
  font-family: 'Poppins', sans-serif;
  font-size: calc(1.5vmin);
  margin-top: 4vmin;
  font-style: italic;
}

main .info table, main .export table {
  width: 80%;
  max-width: 800px;
  font-family: 'Poppins', sans-serif;
  color: currentColor;
  max-height: 75%;
}

main .info table th, main .info table td, main .info table tr, main .export table th, main .export table td, main .export table tr {
  color: currentColor;
}

main .info table th.hash, main .info table td.hash, main .info table tr.hash, main .export table th.hash, main .export table td.hash, main .export table tr.hash {
  opacity: 0.5;
  font-style: italic;
}

main .info table th, main .export table th {
  font-size: calc(1.4vmin);
}

main .info table td, main .export table td {
  font-size: calc(1.4vmin);
}

main .info table th, main .info table td, main .export table th, main .export table td {
  width: 25%;
}

main .info table th:nth-child(3), main .info table td:nth-child(3), main .export table th:nth-child(3), main .export table td:nth-child(3) {
  width: 50%;
}

main canvas.p5Canvas {
  position: relative;
  margin: auto;
  width: auto;
  height: auto;
  -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
          box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.exportOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.exportOverlay.exportEnabled {
  opacity: 1;
  z-index: 2;
}

.exportOverlay h1 {
  color: white;
  font-size: calc(7vmin);
  font-family: "Playfair Display", serif;
}

.exportOverlay #bar {
  --bar-w: 0%;
  position: relative;
  width: 40vmin;
  height: 1vmin;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 5vmin;
  transition: --bar-w .1s ease-out;
}

.exportOverlay #bar::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  -webkit-animation: loadBar 2s ease-in-out infinite;
          animation: loadBar 2s ease-in-out infinite;
}

@-webkit-keyframes loadBar {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  99% {
    width: 0%;
    left: 100%;
  }
  100% {
    width: 0%;
    left: 0%;
  }
}

@keyframes loadBar {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  99% {
    width: 0%;
    left: 100%;
  }
  100% {
    width: 0%;
    left: 0%;
  }
}

.exportOverlay #bar::after {
  content: "";
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--bar-w);
}
/*# sourceMappingURL=style.css.map */