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

body {
    display: grid;
    place-items: center;
    background: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
}

.card-QR {
    width: min(90vw, 260px);
    padding: 16px;
    background: white;
    border-radius: 16px;
    text-align: center;
    gap: 12px;
}

.card-QR img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.title {
    font-weight: bolder;
    font-size: 20px;
    word-spacing: 2px;
    letter-spacing: 0.5px;
}

.text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    word-spacing: 1px;
}