* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    place-items: center;
    padding: clamp(1.25rem, 5vw, 2rem);
    overflow-x: hidden;
    color: #000;
    background: #fff;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    text-align: center;
}

main {
    width: 100%;
    max-width: 560px;
    min-width: 0;
}

img {
    display: block;
    width: min(100%, 420px);
    max-width: 100%;
    height: auto;
    margin: 0 auto 2rem;
}

.roles,
.status {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.04em;
    line-height: 1.35;
}

.roles + .roles {
    margin-top: 0.35rem;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    opacity: 0.7;
}

.status {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 480px) {
    img {
        width: min(88vw, 360px);
        margin-bottom: 1.5rem;
    }

    .roles {
        font-size: 0.95rem;
    }

    .status {
        max-width: 17rem;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.78rem;
    }
}
