/*
 * ---------------------------------------------------------
 * Halcyon Dreams
 * Placeholder portfolio stylesheet
 * ---------------------------------------------------------
 */


/* Use predictable sizing for every element. */
* {
    box-sizing: border-box;
}


/* Remove default browser spacing. */
html,
body {
    margin: 0;
    min-height: 100%;
}


/* Main page appearance. */
body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px;

    background:
        radial-gradient(
            circle at 50% 35%,
            #27304a 0%,
            #121725 45%,
            #090b10 100%
        );

    color: #e7e5dc;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* Centered homepage content. */
.hero {
    width: min(100%, 900px);

    text-align: center;
}


/* Small label above the main heading. */
.eyebrow {
    margin: 0 0 24px;

    color: #9da7bd;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.3em;
}


/* Main heading. */
h1 {
    margin: 0;

    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.95;

    letter-spacing: -0.05em;
}


/* Supporting text below the heading. */
.description {
    max-width: 500px;

    margin: 28px auto 0;

    color: #aeb5c6;

    font-size: 1rem;
    line-height: 1.6;
}


/* Small coming-soon indicator. */
.status {
    display: inline-block;

    margin-top: 32px;
    padding: 9px 15px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;

    color: #d4d7df;

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}