
/* Basic, clean styling */
* { box-sizing: border-box; }
html { height: 100%; }
body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #ffffff;
  color: #111;
}

.container {
  width: min(100%, 980px);
  padding: 24px;
  text-align: center;
}

.logo {
  width: 100%;
  height: auto;
  max-width: 920px;
  display: block;
  margin-inline: auto;
  image-rendering: -webkit-optimize-contrast;
}

h1 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 18px 0 0;
}

/* Optional: subtle footer spacing on very tall screens */
.container::after {
  content: "";
  display: block;
  height: 8vh;
}
