nav a {
    color: white; /* 移除超連結顏色 */
    font-weight:bold;
    display: block; /* 讓 <a> 填滿 <li> */
    font-size: 1.2rem;
    text-decoration: none;  /* 移除超連結底線 */
    padding: 10px;
}

nav > ul {
    background-color: #333;
    list-style: none;   /* 移除項目符號 */
    margin: 0;
    padding: 0;
}

/* 滑鼠移到 <a> 時變成深底淺色 */
nav a:hover {
    background-color: rgb(115, 115, 115);
    color: white;
}

.flex-nav {
    display: flex;
    justify-content: center;
}

.u-section-cus {
    background-color: floralwhite;
}
