/* Apply some basic styling to the QR code component */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.qr-code {
    display: block;
    width: 300px;
    height: 450px;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.qr-code img {
    border-radius: 20px;
    max-width: 300px;
    height: auto;
}

.qr-code p {
    margin-top: 10px;
    font-weight: bold;
    font-size: 13px;
}
