body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;  /* フォントサイズを16pxに設定 */
}
header, footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 1rem;
}
header {
    border-bottom: 1px solid #dee2e6;
}
footer {
    border-top: 1px solid #dee2e6;
    margin-top: auto;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
video, canvas {
    max-width: 100%;
    height: auto;
    border: 3px solid black;  /* 黒いボーダーラインを追加 */
}
button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px; /* ボタンのフォントサイズを16pxに設定 */
}

#qrDataDisplay {font-weight: bold; color:royalblue; font-size:18px;}