html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.home {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  box-sizing: border-box;
  letter-spacing: 0.14em;
  font-size: clamp(36px, 8vw, 108px);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
  box-sizing: border-box;
}
.text {
  display: block;
  width: min(88vw, 540px);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(22px, 4.8vw, 42px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: 0.005em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}
.blank {
  min-height: 100vh;
  background: #ffffff;
}
@media (max-width: 430px) {
  .page {
    padding: 28px 18px;
  }
  .text {
    width: min(86vw, 320px);
    font-size: clamp(20px, 5.4vw, 30px);
    line-height: 1.12;
  }
}


body:focus {
  outline: none;
}
