* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: #fff;
  color: #173b4c;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}
main {
  width: 100%;
  padding: clamp(24px, 5vw, 64px) 20px 40px;
  text-align: center;
}
.logo {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin-inline: auto;
}
p { margin: 28px 0 0; line-height: 1.6; }
a { color: inherit; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
a:hover { color: #526f7e; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
