* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #f4efe7;
}

.hero {
  width: 100%;
  min-height: 70vh;
  background-image: url("/images/sfondo.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 24px;
}

.hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}