body{
    margin:0;
    background:#0f1117;
    color:#e7e7e7;
    font-family:Segoe UI, Arial, sans-serif;
}
.container{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5vw;
    box-sizing:border-box;
}
h1{
    font-size:clamp(2rem,4vw,3.2rem);
    margin:0 0 1rem 0;
}
.status{
    color:#58d68d;
    font-size:1.4rem;
    font-weight:600;
}
.message{
    margin-top:1.5rem;
    color:#bfc7d5;
    line-height:1.8;
    font-size:1.1rem;
}
.illustration img{
    max-height:80vh;
    max-width:40vw;
    object-fit:contain;
}
@media (max-width: 900px){
    .container{
        flex-direction:column;
        text-align:center;
        gap:2rem;
    }
    .illustration img{
        max-width:80vw;
    }
}
