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

body {

  background:
    #f5e7d0;

  color:
    #111111;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  min-height:
    100vh;

  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    40px;

}

.landing {

  text-align:
    center;

  max-width:
    1000px;

}

h1 {

  font-size:
    clamp(3rem, 10vw, 8rem);

  line-height:
    0.92;

  font-weight:
    900;

  letter-spacing:
    -0.06em;

  text-transform:
    uppercase;

}

p {

  margin-top:
    28px;

  font-size:
    clamp(1rem, 2vw, 1.5rem);

  font-weight:
    700;

  text-transform:
    uppercase;

}
