* {
box-sizing: border-box;
}

body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;

background: #000000;
color: white;
font-family: 'Playfair Display', serif;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

main {
width: min(90%, 700px);
  margin: 0 auto;
  text-align: center;
}
