body {
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

main {
    width: 90%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .5rem;
}

h1 {
    font-size: 1.5rem;
    text-align: center;
}

p {
    font-size: .9rem;
    color: hsl(216, 15%, 48%);
    text-align: center;
    padding: 0 2rem;
    line-height: 1.5rem;
}

.qr-img {
    width: 100%;
    height: auto;
    align-self: center;
    border-radius: 3%;

}

.card {
    background-color: white;
    border-radius: 3%;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 0 20px 5px rgba(95, 95, 95, 0.2);
    width: 100%;
    align-items: center;
}

.card-content {
    padding: 1rem;
}

@media (min-width: 768px) {
    main {
        width: 40%;
    }
}