@import url("https://use.typekit.net/niu4lak.css");
@font-face {
  font-family: "Lyon Text";
  src: url("LyonText-Regular.woff2") format("woff2"), url("LyonText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lyon Text";
  src: url("LyonText-RegularItalic.woff2") format("woff2"), url("LyonText-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: #fff;
  --border: rgba(100,100,100,0.3);
  --blue: #228cf0;
  --pink: #eb80ff;
  --peach: #EF879F;
  --text: #373737;
  --text-invert: rgb(234, 234, 234);
  --text-light: #6e6e6e;
  --gray-lightest: rgb(241, 241, 241);
  --gray-lighter: rgb(234, 234, 234);
  --gray-light: rgb(166, 166, 166);
  --gray: rgba(0, 0, 0, 0.4);
  --gray-darker: rgba(0, 0, 0, 0.5);
  --link: rgba(0,0,0,0.5);
  --opacity-light: 0.8;
  --opacity-lighter: 0.6;
  --opacity-lightest: 0.2;
  --font-serif: $serif;
  --font-display: $serif-display;
  --font-sans: "helvetica-neue-lt-pro", sans-serif;
  --font-mono: "Courier New", "Courier", monospace;
  --font-accent: $accent;
  --leading-tight: 1.1;
  --leading: 1.5;
  --text-xxs: 0.5rem;
  --text-xs: 0.65rem;
  --text-sm: 0.75rem;
  --text-base: 0.8rem;
  --text-md: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.25rem;
  --text-xxl: 1.5rem;
  --z-top: 20;
  --z-top-nav: 15;
  --z-decor: 9;
  --z-nav: 8;
  --z-main: 0;
  --nav-width-normal: 264px;
  --nav-width-wide: 264px;
  --strip-nav-width: var(--nav-width-normal);
  --top-height: 80px;
  --padding-nav: 1rem;
  --padding-top-page-nav: 80px;
  --padding-top-page: 40px;
}

* {
  box-sizing: border-box;
}

:root {
  --cell-size: 32;
  --cellW: calc(100vw / var(--cell-size));
}

@media only screen and (min-width: 1400px) {
  :root {
    --cell-size: 56;
  }
}
@media only screen and (min-width: 1100px) {
  :root {
    --cell-size: 40;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --cell-size: 20;
  }
}
body {
  overflow: scroll;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #A6A7AB;
  z-index: 10;
  background-size: cover;
  display: none;
  pointer-events: none;
}
#cover .wrapper {
  padding: 1rem;
}
#cover .piece {
  display: flex;
  color: #121212;
}
#cover .piece [title] {
  font-size: inherit;
}

#rainbow-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F38DA7 16%, #F3BEBC 24%, #FB4201 31%, #F09318 36%, #E7C615 40%, #72BA3E 45%, #90C1E1 50%, #BD9067 56%, #9c9c9c 60%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: opacity 1s ease-out;
  animation: fadeOut 3s 3s forwards;
  z-index: 100;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
.rainbow-bar {
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #fff 0%, #F38DA7 16%, #F3BEBC 24%, #FB4201 31%, #F09318 36%, #E7C615 40%, #72BA3E 45%, #90C1E1 50%, #BD9067 56%, #9c9c9c 60%, #fff 70%, #fff 100%);
}

#land .grid {
  display: grid;
  grid-template-columns: repeat(var(--cell-size), 1fr);
  grid-template-rows: masonry;
  width: 100%;
  height: 100%;
  font-family: "Lyon Text", serif;
  font-size: var(--text-md);
}
#land .grid .cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw / var(--cell-size));
  height: calc(100vw / var(--cell-size));
  border: 0.5px solid rgba(229, 229, 229, 0.5215686275);
  color: transparent;
}
#land .grid .cell:hover {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.2px);
}
#land .grid .cell-link {
  text-decoration: none;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--text-base);
  letter-spacing: -0.2px;
  padding: 0.25rem 1rem;
}
#land .grid .cell-link img {
  object-fit: cover;
  height: calc(2 * 100vw / var(--cell-size));
  max-width: 100%;
  width: 100%;
}
#land .grid .cell-link:hover {
  filter: hue-rotate(45deg);
}

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