html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}
body {
    background: #f2f6f8;
    color: #0b2b3c;
    font-family: 'Alata', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}
.main {
    width: 100%;
    max-width: 600px;
    padding: 2rem 1.25rem;
    box-sizing: border-box;
}
.logo-wrap {
    display: inline-block;
    background: #000;
    border-top: 4px solid #1a97c4;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}
.logo {
    display: block;
    width: 210px;
    max-width: 100%;
    height: auto;
}
.tagline {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.4;
    color: #0b2b3c;
}
.lede {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}
.blurb {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}
.notice {
    margin: 1.75rem auto;
    padding: 0.9rem 1.25rem;
    max-width: 26rem;
    background: #e4eef3;
    border-top: 3px solid #1a97c4;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #124b64;
}
.blurb a {
    color: #1a97c4;
    text-decoration: none;
}
.blurb a:hover, .blurb a:focus {
    text-decoration: underline;
}
@media (max-width: 480px) {
    .tagline { font-size: 1.2rem; }
    .lede, .blurb, .notice { font-size: 1rem; }
    .notice { margin: 1.5rem auto; }
}
