:root {
    --azul-fundo: rgb(219, 232, 245);
    --azul-escuro: rgb(31, 50, 81);
    --cinza-texto: rgb(125, 135, 152);
    --branco: #ffffff;
    --sombra-card: 0 0.625rem 1.25rem rgba(0,0,0,0.05);
}
    body {    
        font-family: 'Outfit', sans-serif;
        margin: 0;
    }
    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 100vh;
        background-color: var(--azul-fundo);
    }
    .card {
        background-color: var(--branco);
        max-width: 20rem; 
        width: 90%; 
        padding: clamp(0.75rem, 4vw, 1.5rem); 
        border-radius: 1.25rem; 
        box-shadow: var(--sombra-card);
    }
    .card img {
        width: 100%;
        border-radius: 0.625rem;
    }
    .text {
        text-align: center;
        padding: clamp(1rem, 5vh, 2rem) clamp(0.5rem, 3vw, 1.5rem);    
    }    
    .text h1 {
        color: var(--azul-escuro);
        font-size: clamp(1.2rem, 5vw, 1.375rem);
        margin-block-end: clamp(0.5rem, 2vh, 0.75rem);    
        font-weight: 700;
    }
    .text p {
        color: var(--cinza-texto);
        font-size: 0.938rem;
        margin-block-end: 1.25rem;
        line-height: 1.4;
        font-weight: 400;
    }