/* First Contact Display — 1920 × 1080 landscape */

.fcd-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 2 * var(--nav-height));
    padding: 0 100px;
    text-align: center;
}

/* Screens without the indications footer keep content vertically centered
   in the space below the nav. */
.fcd-main.no-footer {
    height: calc(100% - var(--nav-height));
}

.fcd-title {
    font-size: 140px;
    font-weight: 800;
    text-transform: uppercase;
}

.fcd-subtitle {
    margin-top: 8px;
    font-size: 70px;
    font-weight: 500;
}

.fcd-title.error {
    font-size: 100px;
    color: var(--color-error);
}

.fcd-title.error + .fcd-subtitle {
    margin-top: 46px;
}

.fcd-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    margin-top: 96px;
}

.fcd-hint img {
    width: 66px;
    height: 53px;
    flex-shrink: 0;
}

.fcd-hint p {
    max-width: 840px;
    font-size: 30px;
    font-weight: 600;
    color: var(--color-text-soft);
}

.fcd-arrow {
    width: 266px;
    margin-top: 60px;
}
