/* Load full Inconsolata family (normal + italic) */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

/* Reset + page structure */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Center container */
.quote-box {
  font-family: "Inconsolata", monospace;
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;

  max-width: 800px;
  padding: 2rem;
  margin: 0 auto;
  box-sizing: border-box;

  text-align: center;
  white-space: pre-line;
}

.center-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


  /* Match your site’s typography */
  font-family: "Inconsolata", monospace;
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;

  text-align: center;

  /* Match article padding behavior */
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;

  /* Allows multiline quotes + italics */
  white-space: pre-line;
}

/* Ensure any <em> or <i> uses the real italic face */
.quote-box em,
.quote-box i {
  font-style: italic;
}
