body {
  background-color: #d6d6d6;
  margin: 0;
  padding: 20px;
  color: #000;
  text-align: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#container {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin: 0 auto;
  margin-top: 4vh;
  transform: translate(-27vw, -4vh); /* left + down */
  pointer-events: none;
}
@media (max-width: 600px) {
  #container {
    margin-left: 0vw;
    margin-top: 2vh;
  }
}

/* ASCII grid */
#art-wrapper {
  display: grid;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
               "Liberation Mono", monospace;
  line-height: 1;
  letter-spacing: 0; /* ensure no spacing inflation */
}

/* Single ASCII cell */
.symbol {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000;
}

#site-name {
  font-size: 28px;                 
  font-weight: 500;
  letter-spacing: 0.3px;

  /* Palatino-like serif stack */
  font-family:
    "Palatino Linotype",
    Palatino,
    "Book Antiqua",
    "Libre Baskerville",
    "Times New Roman",
    serif;

  margin-left: 0vw;
  margin-top: 12px;

  text-align: center;
}
@media (max-width: 600px) {
  #site-name {
    font-size: 22px;
    margin-left: 4vw;
  }
}

/* Hide until JS marks it ready */
#container {
  opacity: 0;
  transition: opacity 180ms ease;
  will-change: transform, opacity;
}

#container.is-ready {
  opacity: 1;
}
