:root {
  color-scheme: dark;
  background: #080a0b;
  color: #f5f6f7;
  font-family: system-ui, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; }
main { display: flex; flex-direction: column; min-height: 100svh; }
.account-note {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  text-align: center;
  line-height: 1.6;
  color: #d6dade;
}
.hero {
  display: grid;
  place-items: center;
  flex: 1;
}
.hero img {
  display: block;
  width: 100%;
  height: 80vh;
  height: 80svh;
  object-fit: contain;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
