/* CadetOps brand colours, taken from the logo artwork. */
:root {
    --navy-deep: #001a40;
    --navy: #03214d;
    --navy-light: #032d6a;
    --brand-blue: #0a4bc0;
    --brand-green: #6fab3a;
    --brand-sky: #29c4f6;
    --text: #ffffff;
    --text-muted: #b9cbe6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    height: 100%;
}

body {
    min-height: 100dvh;
    background-color: var(--navy-deep);
    background-image: radial-gradient(ellipse 80% 60% at 50% 45%, var(--navy-deep) 0%, var(--navy-deep) 35%, var(--navy) 70%, var(--navy-light) 100%);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.holding {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
}

.holding__logo {
    margin: 0;
    width: min(960px, 100%);
}

.holding__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.holding__message {
    margin: 1.5rem 0 0;
    font-size: clamp(1rem, 2.6vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-muted);
    /* Letter-spacing adds trailing space after the last letter; balance it so the text stays centred. */
    padding-left: 0.35em;
}
