/* Red Alphabet Website — minimal static styles */

:root {
  --alphabet-color: #ff0000;
  --background-color: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: var(--background-color);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

/* Full-viewport flexbox centering, horizontally and vertically. */
.stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* The single prominent alphabet heading. */
.alphabet {
  margin: 0;
  color: var(--alphabet-color);
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
  /* Wrap rather than overflow horizontally on small screens. */
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
