@font-face {
    font-family: "Noto Sans", sans-serif;
}
body {
    margin: 0;
    background: #010101;
    color: #F7F7F7;
    font-family: 'NotoSansTC-VariableFont_wght.ttf', sans-serif;
}
.nav{
    z-index: 50;
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    font-size: 15px;
    background: #85e3c5;
    color: #010101;
}
.Navoption{
    margin: 12px;
}
.Navoption:hover{
    background: #010101;
    color:#85e3c5;
}
.logo{
    z-index: 60;
    position: fixed;
    font-size:25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #010101;
}
.article{
    margin:50px 10% 30px 10%;
    display: flex;
    flex-direction: column;
}
.section{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.footer{
    display: flex;
    justify-content: left;
    gap: 35px;
    padding:30px 0 50px 10%;
    color:#010101;
    background: #85e3c5;
    font-size: 12pt;
}
.linkbox{
    height: 130px;
    line-height: 20pt;
}
.link{
    text-align: left;
}
/*文字設定*/
.title{
    align-items: start;
    margin-bottom: 20px;
    font-size: 25pt;
    font-weight: bold;
    color: #85e3c5;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease;
}
.title.visible {
    opacity: 1;
    transform: translateY(0);
}
.word{
    width: 70%;
    text-align: left;
    line-height: 1.8;
    font-size: 15pt;
    font-weight:lighter;
}
.word-info{
    text-align: left;
    line-height: 1.8;
    font-size: 12pt;
    font-weight:lighter;
}
ul{
    list-style-type: none;
    padding: 0;
}
/*圖片設定*/
.work-info-big{
    width: 100%;
    margin:40px 0 0 0 ;
}
.work-info-small{
    width: 50%;
    margin:0 10% 0 10%;
    border-radius:10px;
}

/*互動設定*/
.back{
    margin:30px 0 -6px 0;
    text-align: center;
    color:#85e3c5;
    display: block;
}
.back:hover{cursor: pointer;}
.back2{
    margin:30px 0 -6px 0;
    text-align: center;
    color:#85e3c5;
    display:none;
}
.back2:hover{cursor: pointer;}

a{text-decoration: none;}
a:visited{ color:#010101;}
a:link{ color:#010101;}

/*平板設定*/
@media(max-width:1250px){
    .Navoption{
        font-size: 14px;
    }
    .work{
        height: 250px;
        width: 350px;
    }
    /*文字設定*/
    .title{font-size: 20pt;}
    .word{font-size: 12pt;}
    .word-info{font-size: 10pt}
}

/*手機設定*/
@media(max-width:500px){
    .work{
        height: 200px;
        width: 300px;
        border-radius:10px;
    }
    .article{
        display: flex;
        flex-direction: column;
    }
    .section{
        flex-direction: column;
    }
    .footer{font-size: 10pt}
    .back{
        display: none;
    }
    .back2{
        display: block;
    }
    /*文字設定*/
    .title{font-size: 18pt;}
    .word{
        font-size: 10pt;
        width: 100%;
    }
    /*圖片設定*/
    .work-info-big{
        margin:40px 0 0 0;
        border-radius: 0;
    }
}