/* ปรับพื้นหลังให้เต็มหน้าจอและรองรับขนาดต่างๆ */
body {
    margin: 0;
    padding: 0;
    font-family: 'tahoma';
    background: url('https://are.ksu.ac.th/bookingaret/New/bgksu2.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    font-weight: bold;
}

/* สไตล์สำหรับสัญลักษณ์ 8 เหลี่ยม */
.symbols {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.symbol {
    width: 200px;
    height: 200px;
    background-color: rgba(237, 237, 237, 0.6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin: 0 35px;
}

.symbol h2 {
    font-size: 1.5em;
    text-align: center;
}

/* เอฟเฟกต์เมื่อ hover */
.symbol:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* เอฟเฟกต์การคลิก */
.symbol:active {
    transform: scale(0.95);
}
/* เพิ่มความยืดหยุ่นของขนาด */
@media (max-width: 768px) {
    .symbol {
        width: 180px;
        height: 180px;
    }
    .header h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .symbol {
        width: 150px;
        height: 150px;
    }
    .header h1 {
        font-size: 1.5em;
    }
}