body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}



nav {
    background-color: #333;
    overflow: hidden;
    font-weight: bold; /* 導覽列字體加粗 */
    position: fixed;
    width: 100%;
    z-index: 10;
}



nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-grow: 0.6;
}



nav ul li { 
    flex: 1;
}



.nav-text {
    color: white;
    margin-left: 50px; /* 調整文字和Logo之間的間距 */
    margin-right: 20px;
    font-size: 20px; 
    flex-shrink: 0;
}



.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0px;
    overflow: hidden; /*目前沒用*/
}



nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 18px 16px; /* 導覽列邊框粗度 */
    text-decoration: none;
}



nav ul li a:hover {
    background-color: #111;
}



