:root {
  color-scheme: light;
  background: #f4f0e8;
  color: #171512;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  position: fixed;
  inset: 0;
  background: #f4f0e8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding: max(1.5rem, env(safe-area-inset-top))
    max(1.5rem, env(safe-area-inset-right))
    max(1.5rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  white-space: nowrap;
}

p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
