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

body {
  min-height: 100vh;
  background: #fff;
  color: #000;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.site {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.answer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(8rem, 31vw, 31rem);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: lowercase;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .answer {
    font-size: clamp(7rem, 39vw, 14rem);
  }
}
