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

body {
  background: #000;
  font-family: 'Georgia', serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 150vh;
  object-fit: cover;
}

h1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #f0ece6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  pointer-events: none;
}

p {
  position: fixed;
  top: calc(50% + clamp(1.5rem, 5vw, 3.5rem));
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(0.75rem, 2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #f0ece6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  pointer-events: none;
}
