/* [project]/app/not-found.css [app-client] (css) */
.not-found-page {
  background: var(--blue-900);
  min-height: 100svh;
  color: var(--white);
  text-align: center;
  place-items: center;
  padding: 32px;
  display: grid;
}

.not-found-content {
  flex-direction: column;
  align-items: center;
  width: min(520px, 100%);
  display: flex;
}

.not-found-code {
  color: var(--orange);
  font-family: var(--font-plex-mono), monospace;
  letter-spacing: -.08em;
  margin: 0;
  font-size: clamp(88px, 18vw, 150px);
  font-weight: 700;
  line-height: .9;
}

.not-found-content h1 {
  letter-spacing: -.025em;
  margin: 28px 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
}

.not-found-message {
  color: #ffffffad;
  max-width: 440px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

.not-found-content .button {
  margin-top: 30px;
}

@media (max-width: 520px) {
  .not-found-page {
    padding: 24px;
  }

  .not-found-content .button {
    width: 100%;
  }
}

/*# sourceMappingURL=app_not-found_1qtkrau.css.map*/