:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: #4b210f url("images/background.jpg") center / cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 10, 4, 0.4);
}

h1 {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  margin: 0;
  padding: 1.25rem 1.75rem;
  color: #fff8e8;
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.65);
}

h1 span {
  display: block;
  margin-top: 1rem;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}
