/* Add font files for Tiempos Headline */
@font-face {
  font-family: 'Tiempos Headline';
  src: url('fonts/tiempos-headline.woff2') format('woff2'),
       url('fonts/tiempos-headline.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

:root {
  --font-family-headline: 'Tiempos Headline', Georgia, 'Times New Roman', serif;
  --color-heading: #b29160;
  --color-copy: rgba(247, 243, 238, 0.96);
  --bg-color: #06131f;
}

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

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

body {
  background: var(--bg-color) url('images/bg.png') center center / cover no-repeat fixed;
  color: var(--color-copy);
  font-family: var(--font-family-headline);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.hero {
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-heading);
  font-family: 'GT America Mono Trial Md', monospace;
}

.hero p {
  margin: 1rem auto 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  max-width: 18rem;
}
