/* Minimal static landing page. */

:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #202124;
  background: #fff;
}

* {
  box-sizing: border-box;
}

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

body {
  line-height: 1.6;
}

.banner,
.banner img {
  display: block;
  width: 100%;
}

.banner {
  margin: 0;
  overflow: hidden;
}

.banner img {
  height: auto;
}

.content {
  width: min(90%, 760px);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
  text-align: center;
}

.content h1 {
  margin-top: 0;
  line-height: 1.2;
}

.content p {
  max-width: 60ch;
  margin-inline: auto;
}
