/* home/style.css — Minimal hello-world styling. Customers replace. */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hello {
    max-width: 32rem;
    text-align: center;
}

.hello h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hello p {
    line-height: 1.6;
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.hello p:last-child {
    margin-bottom: 0;
}
