@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

:root {
    --bg: #006833;
    --hover: #02783b;
    --white: #fff;
}

nav {
    position: sticky;
    margin: 0 auto;
    top: 0;
    /* 依照設計稿 1920 或 1000【兩者擇一】 */
    /* 不用的請【註解】  即可 */
    max-width: 1000px;
    font-family: "Noto Sans TC", sans-serif;
    z-index: 11;
}

.navList {
    position: absolute;
    right: 0%;
    top: 0%;
    width: 75%;
    height: 100%;
    display: flex;
}

.navItem {
    width: 33.3333%;
    height: 100%;
}

.navlink {
    display: block;
    width: 100%;
    height: 100%;
}

.navItem:nth-child(1) {
    width: 28%;
}

.navItem:nth-child(2) {
    width: 30%;
}

.navItem:nth-child(3) {
    width: 42%;
}