@font-face {
  font-family: Karla;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/karla-latin.woff2') format('woff2');
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: #f0f5fa;
  color: #007fc5;
  font: 400 17px/1.65 Karla, sans-serif;
}
main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95vh;
  padding: 10px;
}
.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  /* Preserve the original page's trailing spacer and vertical placement. */
  padding-bottom: 40px;
}
h1 { width: 100%; margin: 0; padding: 10px; font-size: inherit; line-height: 0; }
.logo { display: block; width: 475px; max-width: 100%; height: auto; margin: auto; }
.introduction { width: 40%; padding: 10px; text-align: center; }
p { margin: 0 0 1.6em; }
.social { display: flex; justify-content: center; gap: 20px; padding: 10px; }
.social a, .social img { display: block; width: 64px; height: 64px; }
a:focus-visible { outline: 2px solid #007fc5; outline-offset: 4px; border-radius: 4px; }
@media (max-width: 767px) { .introduction { width: 100%; } }
