:root {
  --background: #080604;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  color: #f2eadc;
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.page-shell {
  min-height: 100%;
  background: var(--background);
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero,
.hero img {
  display: block;
  width: 100vw;
  height: 100vh;
}

.hero img {
  object-fit: cover;
  object-position: center;
}
