@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.qr-card {
    background: hsl(0, 0%, 100%);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    max-width: 280px;
    text-align: center;
}

.qr-card img {
    border-radius: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.qr-card h1 {
    color: hsl(218, 44%, 22%);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.qr-card p {
    font-size: 15px;
    color: hsl(216, 15%, 48%);
    line-height: 20px;
    margin-bottom: 20px;
}

