@import url("https://fonts.cdnfonts.com/css/thegoodmonolith");

@font-face {
  src: url("https://fonts.cdnfonts.com/css/pp-neue-montreal") format("woff2");
  font-family: "PP Neue Montreal", sans-serif;
  font-weight: 400;
}

body {
  font-family: "PP Neue Montreal", sans-serif;
  background-color: #000000;
  color: #ffffff;
  position: relative;
}

.coordinates-section {
  grid-column: 1 / span 3;
  font-family: "TheGoodMonolith", monospace;
}

/* Key hint styling */
.key-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 1px solid var(--color-text);
  border-radius: 3px;
  font-size: 12px;
  margin: 0 3px;
  min-width: 20px;
  height: 20px;
}

/* Footer text styling */
.footer p {
  font-family: "TheGoodMonolith", monospace;
}

/* Header and Footer */
.header,
.footer {
  position: relative;
  left: 0;
  width: 100vw;
  padding: 1.5rem;
  z-index: 10000;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--spacing-base);
}

.header {
  top: 0;
}

.footer {
  bottom: 0;
}






rectpackr-layout {
  box-sizing: border-box;
  display: flex;
/*  flex-wrap: wrap;*/
overflow-y: hidden;
  align-items: flex-start;
  padding: 8px;
}

rectpackr-layout > * {
  box-sizing: border-box;
  display: block;
  aspect-ratio: 0;
  width: 100%;
  height: auto;
  padding: 8px;
  border-radius: 16px;
}

rectpackr-layout > *:nth-child(12n + 1),
rectpackr-layout > *:nth-child(12n + 6),
rectpackr-layout > *:nth-child(12n + 12) {
  aspect-ratio: 2/3;
}

rectpackr-layout > *:nth-child(12n + 3),
rectpackr-layout > *:nth-child(12n + 7) {
  aspect-ratio: 2/3;
}

@media (min-width: 500px) {
  rectpackr-layout > * {
    --base-size: 50%;
    width: var(--base-size);
  }

  rectpackr-layout > *:nth-child(12n + 1),
  rectpackr-layout > *:nth-child(12n + 2),
  rectpackr-layout > *:nth-child(12n + 6),
  rectpackr-layout > *:nth-child(12n + 12) {
    width: calc(2 * var(--base-size));
  }
}

@media (min-width: 800px) {
  rectpackr-layout > * {
    --base-size: 25%;
  }
}

@media (min-width: 1400px) {
  rectpackr-layout > * {
    --base-size: 31.999%;
  }
}

@media (min-width: 1800px) {
  rectpackr-layout > * {
    --base-size: 20.5%;
  }
}

@media (min-width: 2200px) {
  rectpackr-layout > * {
    --base-size: 9.999%;
  }
}


*::-webkit-scrollbar {
    display: none;
}


  rectpackr-layout a img
{width: -webkit-fill-available; height: auto;}

.logo{    width: 100vh;}

