:root{
    --bg:#f7f5f0;
    --text:#111111;
    --muted:#666666;
    --red:#b40917;

    --heading:'Newsreader', serif;
    --body:'Instrument Sans', sans-serif;
}

*{box-sizing:border-box;}

body{
    margin:0;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:32px;
    background:var(--bg);
    color:var(--text);
    font-family:var(--body);
}

.wrap{
    max-width:900px;
    text-align:center;
}

.logo{
    width:72px;
    display:block;
    margin:0 auto 42px;
}

h1{
    margin:0;
    font-family:var(--heading);
    font-size:clamp(3rem,8vw,5.6rem);
    font-weight:400;
    letter-spacing:-0.04em;
    line-height:.95;
}

h1 span{
    color:var(--red);
}

p{
    max-width:640px;
    margin:30px auto 0;
    font-size:1.12rem;
    line-height:1.8;
    color:var(--muted);
}

footer{
    margin-top:72px;
    font-size:.82rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#8b8b8b;
}
