@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@100..700&display=swap');

:root {
  color-scheme: dark;
  --background: #020617;
  --text: #ffffff;
  --font-sans:
    'IBM Plex Sans', 'Arial', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  --font-mono:
    'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
    monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: min(100% - 3rem, 24rem);
  text-align: center;
}

.brand,
.tagline {
  margin: 0;
}

.brand {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.tagline {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
}

.section-colors {
  width: min(15rem, 100%);
  height: 0.375rem;
  margin-top: 0.25rem;
  background: linear-gradient(
    to right,
    #ffcc00 0% 16.6667%,
    #ff2266 16.6667% 33.3333%,
    #ff6600 33.3333% 50%,
    #32cbff 50% 66.6667%,
    #aa44ff 66.6667% 83.3333%,
    #cbd5e1 83.3333% 100%
  );
}
