/* Self-contained subset of wwwroot/css/app.css + wwwroot/css/lucinda.css +
   wwwroot/vendor/css/main.css, trimmed to what the parked page needs.
   No imports back to live origin. */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background: #fff;
    color: #707070;
    font-family: 'Muli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16pt;
    font-weight: 400;
    line-height: 1.75em;
    -webkit-text-size-adjust: none;
}

.homepage {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.homepage h2 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Saira Extra Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(4rem, 13vw, 12rem);
    line-height: 1;
    color: #BD5D38; /* Lucinda brand copper from wwwroot/css/lucinda.css */
}

.firstname {
    color: black;
}

@media (prefers-color-scheme: dark) {
    html, body {
        /* Match live site's dark mode bg from wwwroot/vendor/css/main.css. */
        background: #2E2E2E;
        color: #AFAFAF;
    }

    .firstname {
        color: white;
    }
}
