* {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
}

.landing-page {
  min-height: calc(100vh - 56px);
  min-height: calc(100svh - 56px);
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 768px);
  max-height: calc(100svh - 32px);
  object-fit: contain;
}

@media (max-width: 600px) {
  .landing-page {
    padding: 8px;
  }

  .hero-image {
    max-height: calc(100svh - 16px);
  }
}

.site-footer {
  padding: 12px 16px 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;
}

.site-footer p {
  margin: 0;
}
