/* กำหนดพื้นที่ให้กว้างเต็มจอ */
html,body {
    height: 100%;
    margin: 0px; 
    padding: 0px;
}

h1 {
    margin-left: auto;
}

/* Style the button */
.btnAction {
    padding: 20px;
    font-size: 20px;
    margin-top: 20px;
  }

.container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box; /*ไม่ให้กรอบขยายเมื่อกำหนด padding*/
    display:flex;
    justify-content: center; /* แนวนอน */
    align-items: center; /* แนวตั้ง 
    background-color: black; */
    z-index: 999;
}

.learning-content {
    color: aqua;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box; /*ไม่ให้กรอบขยายเมื่อกำหนด padding*/
}

.qrcode {
    margin: 0px; 
    padding: 0px;
    box-sizing: border-box; /*ไม่ให้กรอบขยายเมื่อกำหนด padding*/
    display:flex;
    flex-direction: column;
    justify-content: center; /* แนวนอน */
    align-items: center; /* แนวตั้ง */
}

.how-to {
    color:royalblue;
    max-width: 500px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center; /* แนวนอน */
    display:flex;
    flex-direction: column;    
    box-sizing: border-box; /*ไม่ให้กรอบขยายเมื่อกำหนด padding*/
}
