*{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html{
            scroll-behavior: smooth;
        }

        body{
            font-family:'Gill Sans MT', '微軟正黑體' sans-serif;
        }

        img{
            width: 100%;
            display: block;
        }


        .navbar{
            overflow: hidden;
            background-color: rgb(86, 177, 135);
        }

       
        .dropdown{
            float:right;
            overflow: hidden;
            min-width: 100px;
        }

        .dropdown .dropbtn{
            width: 100%;
            text-align:center;
            font-size: 12px;
            border: none;
            outline: none;
            color: whitesmoke;
            padding: 6px;
            background-color: inherit;
        }

        .dropdown:hover .dropbtn{
            background-color:rgb(63, 121, 63);
        }

        .dropdown-content{
            display: none;/*這很重要*/
            position: absolute;
            background-color:rgb(86, 177, 135);
            right:0;
            width: 100px;
            text-align:center;
            /* z-index可以設定元素的堆疊順序，設定值越高越前面，可以為負數，例如：z-index: -1。*/
            z-index: 1;
        }

        .dropdown-content a{
            display:block;/*重要*/
            /*float浮動:指定一個元素內容應沿其容器的左側或右側放置
            預設值為none*/
            float:none;
            color:whitesmoke;
            text-decoration: none;
            font-size: 12px;
            padding: 6px;
        }

        .dropdown-content a:hover{
            color: rgb(52, 99, 52);
        }

        .dropdown:hover .dropdown-content{
            display: block;/*重要*/
        }

        .logo img{
            width: 300px;
            margin:auto;
        }

        .header{
            position: sticky;
            top: 0;
            z-index: 999;
            background-color:white;
        }

        .mugen{
            color: rgb(86, 177, 135);
            width: 300px;
            margin-left: 15%;
            /* overflow: hidden; */
        }

        .mugen::before{
            content: "∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞";
            color:rgb(52, 99, 52);
        }

        .mugen::after{
            content: "∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞";
            color:rgb(52, 99, 52);
        }

        .nav{
            display: flex;
            flex-wrap: wrap;
            max-width: 800px;
            width:90%;
            margin: auto;
            justify-content: center;
        }

        .nav button{
            position: relative;
            border: none;
            margin-left:40px;
            background-color:white;
            color:purple;
            font-size: 14px;
            cursor: pointer;
            padding: 10px;
            letter-spacing: 1px;
        }

        .nav button:hover{
           color: plum;
        }

        .mugen2{
            color: rgb(52, 99, 52);
            width: 300px;
            margin-left: 15%;
            /* overflow: hidden; */
        }

        .mugen2::before{
            content: "∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞";
            color:rgb(86, 177, 135);
        }

        .mugen2::after{
            content: "∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞∞";
            color: rgb(86, 177, 135);
        }

        

        .footer{
            margin-top: 80px;
        }

        .footer-nav{
            display: flex;
            justify-content: center;
            gap: 30px;
                        
        }

        .footer-nav a{
            position: relative;
            color: purple;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-nav a:not(:last-child)::after{
            content: "|";
            color:purple;
            margin-left: 38px;
        }

        .footer-nav a:hover{
            color: plum;
        }

        .footer-p{
            color:rgb(52, 99, 52);
            text-align: center;
            padding: 14px;
        }

        @media(max-width:768px){
        
            /* LOGO */
        .logo img{
            width: 180px;
        }

        /*語言列*/
        .dropdown{
            width: 8%;
        }
        /* .dropdown .dropbtn{
            font-size: 16px;
        }

        .dropdown-content{
            width: 100%;
        } */

        /* 導覽列 */
        .nav{
            width: 100%;
            justify-content: center;
        }

        .nav button{
            margin-left: 10px;
            font-size: 12px;
            padding: 8px;
        }

        /* 無限符號裝飾 */
        .mugen, .mugen2{
            width: 100%;
            margin-left: 0;
            text-align: center;
            font-size: 12px;
            overflow: hidden;
            white-space: nowrap;
        }    
        }