/* พื้นหลังสีดำ */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;

    height: 100vh;
    margin: 0;
}
.container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* ทำให้จัดวางในแนวคอลัมน์ */
}
.boxh{
    color: aqua;
    text-shadow: 0 0 8px #50ecb0;
}
/* กล่องที่มีกรอบโปร่งแสง */

    .boxview{
    text-align: center;
    width: 80%;
    border: 2px solid rgba(255, 165, 0, 0.7);
    padding: 20px;
    background-color: rgba(219, 216, 216, 0.342); /* พื้นหลังโปร่งแสง */
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(255, 165, 0, 0.7); /* เงาเรืองแสง */
}

/* หัวข้อสีสีน้ำเงินเข้มที่มีเงาเรืองแสง */
.title {
    color: #1e3a5f;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6);
    font-size: 36px;
    margin-bottom: 20px;
    animation: glowing 2s ease-in-out infinite alternate;
}

/* การแสดงเงาหัวข้อ */
@keyframes glowing {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 0.6);
    }
}

/* ลิงก์ดาวน์โหลด */
.download-link {
    color: #ffa500; /* สีส้มเรืองแสง */
    font-size: 18px;
    text-decoration: none;
    border: 2px solid #ffa500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

/* เมื่อวางเมาส์บนลิงก์ */
.download-link:hover {
    background-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.8);
}

/* คำอธิบาย */
.description {
    font-size: 20px;
    margin-bottom: 20px;
}
table{
    color: #000;
    border: #000;
    background-color: #fff;
    width: 95%;
    border-collapse: collapse;
    border-radius: 3px;
}
table td ,table th{
    border:1px solid #000;
    
}
table th{
    color: #00F;
    border-radius: 3px 3px 0 0;
}
