*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  overflow: hidden;
  background: #0b0a09;
  color: #f4efe6;
  font-family: Georgia, "Times New Roman", Times, serif;
}

main {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 4vw;
}

h1 {
  font-size: clamp(4rem, 22vw, 28rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-align: center;
  white-space: nowrap;
}
