
        body {
            justify-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
            margin: auto;
            width: 1000px;
            font-family: "Sarabun", sans-serif;
        }
        #banner {                   /* ภาพแบนเนอร์ */
            width: 100%;
            height: 200px;
            background-image: url('Banner.png'); 
            background-size: cover;
            background-position: center;
        }
        #container {             /* ความกว้างของส่วนแสดงผล */
            display: flex;
            flex: 1;
            width: 100%;
        }
        #navbar {                   /* กำหนดคุณสมบัติของ navbar ด้านข้าง */
            flex: 0 0 220px;
            background-color: #f4f4f4;
            border-radius: 10px;
            overflow-y: auto;
            max-height: auto;
            padding: 10px;
        }
        /* กำหนดคุณสมบัติของปุ่มลิงค์ */
        /* #navbar button {            
            width: calc(100% - 20px);
            padding: 10px;
            margin: 5px;
            border: none;
            background: none;
            text-align: left;
            cursor: pointer;
            outline: none;
            font-family: "Sarabun", sans-serif;
        } */
        /* กำหนด Hover เมื่อชี้เมาส์ที่ลิงค์ */
        /* #navbar button:hover {      
            background-color: #ddd;
        } */
        #content {
            border: none;
            height: 1500px;  /* ความสูงของหน้าแสดงผล */
            width: 100%;
        }
        footer {
            width: 100%;
            height: 50px;
            text-align: center;
            line-height: 30px;
        }
        footer-motto {
            line-height: 30px;
        }