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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: 1200px;
  padding: 16px;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
}
