/* QRコードページ全体のスタイル */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* QRコードを表示するコンテナ */
.qr-container {
    /* background-color: #ffffff; */
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    display: inline-block;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

/* QRコード画像のスタイル */
.qr-code {
    width: 250px; /* 幅を指定 */
    height: auto;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* 下のテキストスタイル */
p {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
}

/* 見出しのスタイル */
h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
