* {
    margin: 0;
    padding: 0;
    font-family: "Outfit", serif;
}

body {
    width: 100%;
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 90%;
    max-width: 350px;
    height: fit-content;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    padding: 1rem 0;
    box-sizing: border-box;

}



.qr-code {
    width: 90%;
    border-radius: 10px;
}

.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0rem 2rem 0rem;
}

.subtitle {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text h2 {
    width: 80%;
    font-weight: 800;
    color: hsl(218, 44%, 22%);
    margin: 1rem 0;
    font-size: 1.5rem;
}

.parrafo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text p {
    width: 75%;
    font-weight: 400;
    font-size: 15px;
    color: hsl(216, 15%, 48%);
}

@media (max-width: 389px) {
    .text h2 {
        font-size: 1.40rem;
        width: 89%;
    }
    .parrafo {
        width: 100%;
    }

}