:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #000000;
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 5vw, 48px);
  padding: clamp(24px, 6vw, 64px);
}

.title {
  margin: 0;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

.subtitle {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.logo {
  width: min(88vw, 100%);
  max-width: clamp(300px, 60vw, 640px);
  height: auto;
  display: block;
}
