/* ---------- General ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;

    background: #111111;
    color: white;

    font-family: Arial, Helvetica, sans-serif;
}

/* ---------- Layout ---------- */

.container {
    width: 100%;
    max-width: 500px;

    margin: 0 auto;

    padding: 40px 24px 80px;

    text-align: center;
}

/* ---------- Logo ---------- */

.logo {
    width: 170px;
    height: auto;

    margin-bottom: 24px;
}

/* ---------- Typography ---------- */

h1 {
    margin: 0;

    font-size: 2rem;
    font-weight: 700;
}

.tagline {
    margin-top: 18px;

    color: #d8d8d8;

    font-size: 1rem;
    line-height: 1.5;
}

.motto {
    margin-top: 24px;

    color: #b91c1c;

    font-weight: bold;

    letter-spacing: 0.05em;
}

/* ---------- Links ---------- */

.links {
    margin-top: 42px;
}