:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --font-mono: ui-monospace, "SF Mono", "Consolas", "Menlo", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  background: var(--color-bg);
}

body {
  display: flex;
  min-height: 100vh;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8vh 24px;
}

.hero__image {
  width: min(942px, 70vw);
  aspect-ratio: 942 / 664;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__tagline {
  margin: clamp(24px, 5vw, 56px) 0 0;
  color: var(--color-text);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
}
