/* style.css */

/* 1. Import Inter instead of JetBrains Mono */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

body {
  /* 2. Use ChatGPT's font stack */
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 1em;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

nav {
  margin-bottom: 1.5em;
}

@media (max-width: 600px) {
  body {
    margin: 0.5em;    .justify-all {
      text-align: justify;
    }
    font-size: 1em;
  }
  nav {
    font-size: 1em;
  }
}

body.night {
  background: #181818;
  color: #e0e0e0;
}

body.night a {
  color: #8ecae6;
}

body.night nav {
  border-bottom: 1px solid #333;
}
