:root {
  color-scheme: light;
  font-family: "SFMono-Regular", "Roboto Mono", "Liberation Mono", Consolas,
    monospace;
  color: #050505;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background-color: #fff;
  background-image: url("assets/neko-background.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.page {
  min-height: inherit;
}

.site-title {
  position: fixed;
  top: 20px;
  left: 20px;
  max-width: calc(100vw - 40px);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  white-space: pre;
}

.links {
  position: fixed;
  bottom: 62px;
  left: 20px;
  display: grid;
  gap: 8px;
}

.links a {
  width: fit-content;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.links a:focus-visible {
  outline: 2px solid #050505;
  outline-offset: 4px;
  box-shadow: 0 0 0 5px #fff;
}

.about-page {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: none;
}

.about-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #fff;
  background-image: url("assets/neko-background.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  content: "";
  transform: scaleX(-1);
}

.about-content {
  width: min(650px, calc(100% - 40px));
  min-height: 100vh;
  min-height: 100svh;
  margin-left: auto;
  background-color: #fff;
  padding: 20px 20px 48px 0;
}

.about-title {
  position: static;
  max-width: none;
  margin: 0 0 30px;
  text-align: right;
}

.about-copy {
  font-size: 14px;
  line-height: 1.58;
}

.about-copy p {
  margin: 0 0 1rem;
}

.about-motto {
  display: grid;
  margin: 28px 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.about-back {
  width: fit-content;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about-back:focus-visible {
  outline: 2px solid #050505;
  outline-offset: 4px;
  box-shadow: 0 0 0 5px #fff;
}

.site-footer {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: calc(100vw - 40px);
  font-size: 12px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  body {
    background-position: 58% bottom;
  }

  .site-title {
    font-size: 28px;
  }

  .links {
    bottom: 60px;
  }

  .links a {
    font-size: 15px;
  }

  .site-footer {
    font-size: 11px;
  }

  .about-page::before {
    background-position: 42% bottom;
    opacity: 0.14;
  }

  .about-content {
    width: 100%;
    background-color: transparent;
    padding: 20px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-copy {
    font-size: 13px;
    line-height: 1.55;
  }

  .about-motto {
    font-size: 16px;
  }
}
