* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

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

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.card {
    background-color: hsl(0, 0%, 100%);
    padding: 1rem;
    border-radius: 1.25rem;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.0476518);
    max-width: 320px;
}

.image-qr-code {
    width: 100%;
    height: auto;
    border-radius: 0.625rem;
    margin-bottom: 1.5rem;
}

.text {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.title {
    color: hsl(218, 44%, 22%);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.paragraph {
    color: hsl(220, 15%, 55%);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.attribution {
    font-size: 11px;
    text-align: center;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}